History log of /PHP-5.5/ext/simplexml/simplexml.c (Results 201 – 225 of 301)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 406c2156 08-Jan-2004 Sterling Hughes

Fix dumping, when dumping a text element, for example:

<?php
$doc = simplexml_load_string('<?xml version="1.0"?>
<namelist>
<name>
<first>helly</first>
</name>
<

Fix dumping, when dumping a text element, for example:

<?php
$doc = simplexml_load_string('<?xml version="1.0"?>
<namelist>
<name>
<first>helly</first>
</name>
<name>
<first>sterling</first>
</name>
</namelist>');
var_dump($doc->name[0]->first);

Used to not display the node's content, now it does.

show more ...


# 526c6bd0 08-Jan-2004 Marcus Boerger

Fix windows build issue


# fb38ee26 08-Jan-2004 Marcus Boerger

Cannot use shared SPL


# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


Revision tags: php-5.0.0b3, php-5.0.0b3RC2
# eb973da1 18-Dec-2003 Dmitry Stogov

two new methods were added
$node->count($subnode_name) - returns count of subnodes with specified name
$node->attributes() - returns array of attributes


Revision tags: php-5.0.0b3RC1
# 4fd476ee 17-Dec-2003 Dmitry Stogov

accessing singular subnode as array


# 094861db 17-Dec-2003 Rob Richards

free nodes correctly to clear node proxies


# a08a37dd 16-Dec-2003 Marcus Boerger

Better comment


# 4dd4bcdb 16-Dec-2003 Marcus Boerger

Add error handling for element/attribute creation/changing


# bf36e351 16-Dec-2003 Ilia Alshanetsky

Removed duplicate php_libxml_(init|shutdown) they are already done by
ext/libxml.


# 63df219b 09-Dec-2003 foobar

- Update header + added missing Id tags.


# a9889290 07-Dec-2003 Wez Furlong

allow $node['not_yet_existing_attribute'] = $value; to work


# fd7b38d7 29-Nov-2003 Marcus Boerger

Fix return value.


# 68e218e8 29-Nov-2003 Marcus Boerger

Remove test code


# be974aff 24-Nov-2003 Rob Richards

Fix bug #26159 - SimpleXML XPath support (patch by Adam Trachtenberg)
a few fixes to memory corruption


# fc117add 23-Nov-2003 Marcus Boerger

Several improvements to the simplexml_element object:
- Allow to use it as an instance of Iterator
- Prepareto use it as a normal object, including spcialization


# 86676d4d 14-Nov-2003 Marcus Boerger

Adjust to latest conversion cast changes


# 2b35596d 13-Nov-2003 Marcus Boerger

Fix classname, CDATA handling (semantically identical to text) and
iterators (Return sub elements as objects, converted to string you get
the text).


# bfb73676 10-Nov-2003 Marcus Boerger

Split into element=property and attribute=dimension overloading.


# f884a5b4 05-Nov-2003 Ilia Alshanetsky

Kill unused variables.


# 040d945f 03-Nov-2003 Sterling Hughes

make this macro safe


# 6ab221b3 03-Nov-2003 Sterling Hughes

remove attributes from this check


# e963f0b1 03-Nov-2003 Sterling Hughes

- Stop a crash in xpath
- Remove the ability to access attributes via the -> operator, attributes
are accessed via the array indicators


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1
# 9547ac2d 29-Oct-2003 Moriyoshi Koizumi

Oops.


# 73425451 29-Oct-2003 Moriyoshi Koizumi

Do not use convert_to_*_ex() for ordinary zval pointers.


12345678910>>...13