History log of /PHP-5.5/ext/libxml/libxml.c (Results 101 – 115 of 115)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.3.5RC3
# 7c710a9f 15-Feb-2004 Zeev Suraski

Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0.

Note: You should not be using ZVAL_DELREF() in day to day usage. Instead,
you should use zval_ptr_dtor()

Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0.

Note: You should not be using ZVAL_DELREF() in day to day usage. Instead,
you should use zval_ptr_dtor(). Use ZVAL_DELREF() only if you're
messing with the refcount directly and know what you're doing.
Note #2: For clarity, if you want to initialize a new zval with a refcount
of 0, it's best to do that directly, instead of using ZVAL_DELREF
after allocating the zval...

show more ...


Revision tags: php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# c66c9e71 10-Jan-2004 Marcus Boerger

Fix memory corruption with libxml's error handling.


# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


# 620cb2e2 22-Dec-2003 Rob Richards

only test url_stat in read mode


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# 4dd0dbfd 12-Dec-2003 Rob Richards

consolidate error handling


# 1f33239c 09-Dec-2003 Rob Richards

buffer error messages until newline is hit


# 026d4c9e 28-Nov-2003 Sara Golemon

Route php_stat() via streams/url_stat API (php_stream_stat_path).
This enables fopen-wrappers support on stat() and related family calls.


# 2016ac0a 07-Nov-2003 Ilia Alshanetsky

Fixed write support.


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1
# d29fb55b 26-Oct-2003 Rob Richards

common functions for interoperability


Revision tags: php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3
# 56930976 20-Oct-2003 Moriyoshi Koizumi

Fix compiler warnings


# c55f9872 20-Oct-2003 Shane Caraveo

fix the stat check in stream open
addref to the stream context


# 56ce4a84 19-Oct-2003 Rob Richards

add generic default error handling rather than the default stderr


# 33004a01 19-Oct-2003 Rob Richards

unescape filepath which libxml excapes


# 052f9378 19-Oct-2003 Shane Caraveo

add global init/shutdown functions for libxml. this is required as
shutdown is not safe to call multiple times, and to make streams work
correctly some init stuff has to happen in a specific

add global init/shutdown functions for libxml. this is required as
shutdown is not safe to call multiple times, and to make streams work
correctly some init stuff has to happen in a specific order

show more ...


# 399095e7 19-Oct-2003 Shane Caraveo

Add libxml extension for common code that is needed to be shared between
various xml extensions. currently the only implemented support is the
addition of the streams support for libxml. On

Add libxml extension for common code that is needed to be shared between
various xml extensions. currently the only implemented support is the
addition of the streams support for libxml. One new function,
libxml_set_streams_context, which allows a streams context to bet set
prior to loading or writing documents. This works transparently with any
extension that uses libxml. All ini settings that effect streams will
also now effect the loading and writing of xml documents.

TODO: linux support, not sure if config.m4 will work right.

show more ...


12345