summaryrefslogtreecommitdiff
path: root/ext/simplexml/php_simplexml.h
Commit message (Collapse)AuthorAgeFilesLines
* Adding mising declaration (needed for Win32 compilation)Frank M. Kromann2004-02-131-0/+1
|
* Fix bug #27010: segfault after returning nodes with children()Rob Richards2004-01-221-4/+2
| | | | | | | | | Fix segfault in match_ns when matching prefix and node without ns some general cleanup and code consilidation better write handling - engine support dependent better isset handling - engine support dependent namespace fixes for reading/writing
* Enable inherited classes inside SPL and respect order of module init.Marcus Boerger2004-01-181-1/+1
|
* Export access to class_entry by function.Marcus Boerger2004-01-181-0/+2
|
* namespace accesses are now soley URI based as opposed to prefix based.Sterling Hughes2004-01-171-6/+0
|
* Major bugfix for consistency.Marcus Boerger2004-01-171-3/+9
| | | | | | | # After long discussions we came to a conclusion on how to make this # extension consistent in itself. # Thanks to Rob for all the work
* Remove these initializers as they are unused.Sterling Hughes2004-01-091-3/+2
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-1/+1
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - Update header + added missing Id tags.foobar2003-12-091-4/+4
|
* Several improvements to the simplexml_element object:Marcus Boerger2003-11-231-0/+6
| | | | | | - Allow to use it as an instance of Iterator - Prepareto use it as a normal object, including spcialization
* add interop with dom - simplexml_import_domRob Richards2003-10-261-7/+8
| | | | | | | change write behavior on elements to change actual contents change clone method to clone node and not document fix a few libxml mem leaks
* Fix memleaksMarcus Boerger2003-10-251-0/+1
|
* use xmlInitParser instead of xmlInitThreadsRob Richards2003-06-141-2/+0
| | | | | reentrant safe as well no need for xml_parser_inited
* interoperability supportRob Richards2003-06-141-2/+4
| | | | | fix some memleak scenarios
* 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.