History log of /PHP-8.2/ext/simplexml/php_simplexml.h (Results 51 – 67 of 67)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split
# bc2521b6 22-Jan-2004 Rob Richards

Fix bug #27010: segfault after returning nodes with children()
Fix segfault in match_ns when matching prefix and node without ns
some general cleanup and code consilidation
better write h

Fix bug #27010: segfault after returning nodes with children()
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

show more ...


# 8f4e9d9e 18-Jan-2004 Marcus Boerger

Enable inherited classes inside SPL and respect order of module init.


# 9d5ef007 18-Jan-2004 Marcus Boerger

Export access to class_entry by function.


# cb7e9011 17-Jan-2004 Sterling Hughes

namespace accesses are now soley URI based as opposed to prefix based.


# 9e29f174 17-Jan-2004 Marcus Boerger

Major bugfix for consistency.
# After long discussions we came to a conclusion on how to make this
# extension consistent in itself.
# Thanks to Rob for all the work


Revision tags: php-4.3.5RC1
# 5ca7c382 09-Jan-2004 Sterling Hughes

Remove these initializers as they are unused.


# ccfc46b0 08-Jan-2004 foobar

- Happy new year and PHP 5 for rest of the files too..
# Should the LICENSE and Zend/LICENSE dates be updated too?


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# 63df219b 09-Dec-2003 foobar

- Update header + added missing Id tags.


# fc117add 23-Nov-2003 Marcus Boerger

Several improvements to the simplexml_element object:
- Allow to use it as an instance of Iterator
- Prepareto use it as a normal object, including spcialization


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1
# 5191cd3e 26-Oct-2003 Rob Richards

add interop with dom - simplexml_import_dom
change write behavior on elements to change actual contents
change clone method to clone node and not document
fix a few libxml mem leaks


# 873bcefa 25-Oct-2003 Marcus Boerger

Fix memleaks


Revision tags: php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7, php-4.3.3, php-4.3.3RC4, RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2, php-5.0.0b1, php-4.3.3RC1
# d1bfc58a 14-Jun-2003 Rob Richards

use xmlInitParser instead of xmlInitThreads
reentrant safe as well no need for xml_parser_inited


# 09eb38ec 14-Jun-2003 Rob Richards

interoperability support
fix some memleak scenarios


# a1488787 03-Jun-2003 Sterling Hughes

god bless valgrind.
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 everywhe

god bless valgrind.
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.. :)

show more ...


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2
# 94136f0c 27-May-2003 Sterling Hughes

fix __clone()
add schema support


Revision tags: php-4.3.2RC4
# afc21967 26-May-2003 Sterling Hughes

add support for querying nodes with xpath expressions.


Revision tags: BEFORE_FD_REVERT
# 94925b1c 18-May-2003 Sterling Hughes

add very basic code for the simplexml extension. The following works ::

person.xml
--
<person>
<name>
<first>Sterling</first>
<last>Hughes</last>
</name>
<

add very basic code for the simplexml extension. The following works ::

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.

show more ...


123