summaryrefslogtreecommitdiff
path: root/ext/simplexml/php_simplexml.h
Commit message (Collapse)AuthorAgeFilesLines
...
* god bless valgrind.Sterling Hughes2003-06-031-1/+8
| | | | | | | fix double free where object is prematurely dtor'd. I should probably convert the simplexml nodes over to this system too. Actually the new dom extension and everywhere else should use the same type of methods.. :)
* fix __clone()Sterling Hughes2003-05-271-0/+1
| | | | | add schema support
* add support for querying nodes with xpath expressions.Sterling Hughes2003-05-261-0/+1
|
* add very basic code for the simplexml extension. The following works ::Sterling Hughes2003-05-181-0/+77
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.