Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | god bless valgrind. | Sterling Hughes | 2003-06-03 | 1 | -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 Hughes | 2003-05-27 | 1 | -0/+1 | |
| | | | | | add schema support | |||||
* | add support for querying nodes with xpath expressions. | Sterling Hughes | 2003-05-26 | 1 | -0/+1 | |
| | ||||||
* | add very basic code for the simplexml extension. The following works :: | Sterling Hughes | 2003-05-18 | 1 | -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. |