History log of /php-src/ext/simplexml/config.m4 (Results 26 – 29 of 29)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 9bee0725 25-Jun-2003 foobar

Experimental extensions are never enabled by default..

# 75abafdf 25-Jun-2003 Sterling Hughes

these should be enabled by default. At least this much was agreed upon when
the decision to debundle libxml2 was made.

Revision tags: php-4.3.3RC1, BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT
# 813ea0b6 20-May-2003 Derick Rethans

- Make it build with the unbundled libxml again

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

12