Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2005-10-01 | - Allow xpl/simplexml integration with simplexml being built shared | Marcus Boerger | 1 | -0/+1 | |
2005-04-27 | - Made the libxml related stuff to error out if someone does --disable-all | foobar | 1 | -3/+7 | |
or --disable-libxml. Better than silently just leave the ext out.. | |||||
2004-07-18 | Implement extension load-order deps. | Wez Furlong | 1 | -0/+1 | |
2003-11-12 | - Fixed bug #26072 (--disable-libxml does not work). | foobar | 1 | -1/+1 | |
2003-06-30 | - Cleanup, simplifying, etc. | foobar | 1 | -4/+7 | |
2003-06-25 | fine | Sterling Hughes | 1 | -1/+1 | |
2003-06-25 | Experimental extensions are never enabled by default.. | foobar | 1 | -1/+1 | |
2003-06-25 | these should be enabled by default. At least this much was agreed upon when | Sterling Hughes | 1 | -1/+1 | |
the decision to debundle libxml2 was made. | |||||
2003-05-20 | - Make it build with the unbundled libxml again | Derick Rethans | 1 | -1/+10 | |
2003-05-18 | add very basic code for the simplexml extension. The following works :: | Sterling Hughes | 1 | -0/+9 | |
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. |