History log of /php-src/ext/simplexml/simplexml.c (Results 526 – 544 of 544)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# ad509c69 25-May-2003 Sterling Hughes

add a note, and implement this properly later

# bb2a324b 25-May-2003 Sterling Hughes

use proper types

# 3d62c3eb 25-May-2003 Sterling Hughes

remove compiler warnings

# cf8a7bd2 25-May-2003 Sterling Hughes

add/fix assignments for both nodes and attributes
add a working get_property_ptr construct

# 981f5051 25-May-2003 Sterling Hughes

exploit the not yet committed, not yet shown cast_object() object callback.

this makes simplexml the mostest bestest xml extension in the whole wide
world.

# 7d9a4a0a 21-May-2003 Sterling Hughes

simplexml property modification works now

Revision tags: BEFORE_FD_REVERT
# 92d5589a 20-May-2003 Derick Rethans

- Commit broken support for sxe_properties_get

# 37a9e036 20-May-2003 Derick Rethans

- Implement two dummy handlers so that var_dump() doesn't crash on it.

# 7dea37a0 20-May-2003 Derick Rethans

- Add Revision to MINFO (I was chasing ghosts ;)

# 7e161daf 20-May-2003 Sterling Hughes

data corruption is for sissy boys

# f726a84b 19-May-2003 Sterling Hughes

use the appropriate accessor

# a432df54 19-May-2003 Sterling Hughes

fix attribute handling on the root node
simplify node access by defining/using GET_NODE() macro properly

# b3772c4f 19-May-2003 Sterling Hughes

add the ability to serialize the contents back to a file

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