History log of /php-src/ext/simplexml/php_simplexml.h (Results 51 – 56 of 56)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
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