History log of /PHP-7.1/ext/simplexml/simplexml.c (Results 376 – 381 of 381)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 44f6100f 19-May-2003 Sterling Hughes

basic support for modifying XML documents


# f408e9ee 19-May-2003 Sterling Hughes

add some macros that simplify the loops
remove a unnecessary copy


# 26353e4e 18-May-2003 Sterling Hughes

attribute support


# aec55ef9 18-May-2003 Sterling Hughes

properly detect blank nodes


# e3f351dd 18-May-2003 Sterling Hughes

make arrays of subnodes work (hacky)
drop property support for the moment, this will be re-added soonish


# 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 ...


1...<<111213141516