summaryrefslogtreecommitdiff
path: root/ext/simplexml/CREDITS
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2003-05-18 20:33:26 +0000
committerSterling Hughes <sterling@php.net>2003-05-18 20:33:26 +0000
commit94925b1c33e52c325d7643af27dd6ff200373408 (patch)
tree5f9e4c69eda1d3f885bc507c901db025286be534 /ext/simplexml/CREDITS
parent185a4baedd7686b53a8e1b242d1a857b0e1da61e (diff)
downloadphp-git-94925b1c33e52c325d7643af27dd6ff200373408.tar.gz
add very basic code for the simplexml extension. The following works ::
person.xml -- <person> <name> <first>Sterling</first> <last>Hughes</last> </name> </person> person.php -- <?php $p = simplexml_load_file('person.xml'); echo $p->name->last . ', ' . $p->name->first; ?> Still needs lots of work.
Diffstat (limited to 'ext/simplexml/CREDITS')
-rw-r--r--ext/simplexml/CREDITS1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/simplexml/CREDITS b/ext/simplexml/CREDITS
new file mode 100644
index 0000000000..4f03ea1e13
--- /dev/null
+++ b/ext/simplexml/CREDITS
@@ -0,0 +1 @@
+simplexml \ No newline at end of file