diff options
author | SVN Migration <svn@php.net> | 2005-07-14 13:44:04 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2005-07-14 13:44:04 +0000 |
commit | 37cb97aee0684f75540c2f3cc2580191bf3a349a (patch) | |
tree | e544be7476d503d0985a277a87acfbeb1c48d384 /ext/xmlwriter/examples/xmlwriter_oo.php | |
parent | a007ddb1908dacb33693440e7395f7f71f8912e7 (diff) | |
download | php-git-php-5.1.0b3.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_5_1_0b3'.php-5.1.0b3
Diffstat (limited to 'ext/xmlwriter/examples/xmlwriter_oo.php')
-rw-r--r-- | ext/xmlwriter/examples/xmlwriter_oo.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/xmlwriter/examples/xmlwriter_oo.php b/ext/xmlwriter/examples/xmlwriter_oo.php deleted file mode 100644 index 01ada93781..0000000000 --- a/ext/xmlwriter/examples/xmlwriter_oo.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php -$xw = new XMLWriter(); -$xw->openUri('test.xml'); -$xw->startDocument("1.0"); -$xw->startElement("book"); -$xw->text("example"); -$xw->endElement(); -$xw->endDocument(); -$xw->flush(0); |