| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
reentrant safe as well no need for xml_parser_inited
|
|
|
|
|
| |
fix some memleak scenarios
|
|
|
|
|
|
|
| |
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.. :)
|
|
|
|
|
| |
add schema support
|
| |
|
|
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.
|