mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
![]() Using ecalloc() to create objects is expensive, because the dynamic-size memset() is unreasonably slow. Make sure we only zero the main object structure with known size, as the properties are intialized separately anyway. Technically we do not need to zero the embedded zend_object structure either, but as long as the memset argument is constant, a couple more bytes don't really matter. |
||
---|---|---|
.. | ||
tests | ||
config.m4 | ||
config.w32 | ||
CREDITS | ||
php_xmlreader.c | ||
php_xmlreader.h | ||
README | ||
TODO |
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+.