php-src/ext/xmlreader
Dmitry Stogov 4a475a4976 Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors.
zval_dtor() doesn't make a lot of sense in PHP-7.* and it's used incorrectly in some places.
Its occurances should be replaced by zval_ptr_dtor() or zval_ptr_dtor_nogc(), or even more specialized destructors.
2018-07-04 19:22:24 +03:00
..
tests Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
config.m4 Fixes bug #75871 Use pkg-config for libxml2 if available 2018-02-08 10:50:22 +01:00
config.w32 improve searchability for libxml2 headers 2015-05-10 22:22:03 +02:00
CREDITS
php_xmlreader.c Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized destructors. 2018-07-04 19:22:24 +03:00
php_xmlreader.h year++ 2018-01-02 12:57:58 +08:00
README Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00

XMLReader represents a reader that provides non-cached, 
forward-only access to XML data. It is based upon the 
xmlTextReader api from libxml

This extension is designed to only work under PHP 5+.