Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adding mising declaration (needed for Win32 compilation) | Frank M. Kromann | 2004-02-13 | 1 | -0/+1 |
| | |||||
* | Fix bug #27010: segfault after returning nodes with children() | Rob Richards | 2004-01-22 | 1 | -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 Boerger | 2004-01-18 | 1 | -1/+1 |
| | |||||
* | Export access to class_entry by function. | Marcus Boerger | 2004-01-18 | 1 | -0/+2 |
| | |||||
* | namespace accesses are now soley URI based as opposed to prefix based. | Sterling Hughes | 2004-01-17 | 1 | -6/+0 |
| | |||||
* | Major bugfix for consistency. | Marcus Boerger | 2004-01-17 | 1 | -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 Hughes | 2004-01-09 | 1 | -3/+2 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | - Update header + added missing Id tags. | foobar | 2003-12-09 | 1 | -4/+4 |
| | |||||
* | Several improvements to the simplexml_element object: | Marcus Boerger | 2003-11-23 | 1 | -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_dom | Rob Richards | 2003-10-26 | 1 | -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 memleaks | Marcus Boerger | 2003-10-25 | 1 | -0/+1 |
| | |||||
* | use xmlInitParser instead of xmlInitThreads | Rob Richards | 2003-06-14 | 1 | -2/+0 |
| | | | | | reentrant safe as well no need for xml_parser_inited | ||||
* | interoperability support | Rob Richards | 2003-06-14 | 1 | -2/+4 |
| | | | | | fix some memleak scenarios | ||||
* | 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. |