|
|
|
@ -4,17 +4,17 @@ PHP 4 NEWS |
|
|
|
- Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 |
|
|
|
parameters are supplied, but you do not want to provide a row number |
|
|
|
yourself. (Derick) |
|
|
|
- Improved iconv with libc's iconv |
|
|
|
- Improved iconv with libc's iconv. (Yasuo) |
|
|
|
- Added PHP_SAPI constant which contains the name of running SAPI. (Edin) |
|
|
|
- Added ob_get_status() to get array of buffers and it's status. (Yasuo) |
|
|
|
- Fixed crash bug with ob_end_*() function. ob_end_*() will not delete |
|
|
|
buffers that may not be deleted. (Yasuo) |
|
|
|
- Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be |
|
|
|
deleted until script finshes. (Yasuo) |
|
|
|
- Added 3rd parameter "bool erase" to ob_start(). If FALSE, the buffer may not |
|
|
|
be deleted until script finshes. (Yasuo) |
|
|
|
- Changed ob_*() function that have void return type to bool. All ob_*() |
|
|
|
functions return TRUE for success, FALSE for failure. (Yasuo) |
|
|
|
- Added sybase_ct support to dbx module (Marc) |
|
|
|
- Fixed error message handling with PostgreSQL 7.2 (Rui) |
|
|
|
- Added sybase_ct support to dbx module. (Marc) |
|
|
|
- Fixed error message handling with PostgreSQL 7.2. (Rui) |
|
|
|
- Added object aggregation capability, see aggregation_*() functions. (Andrei) |
|
|
|
- Added debug_zval_dump(), which works similar to var_dump, yet displays extra |
|
|
|
internal information such as refcounts and true type names. (Jason) |
|
|
|
@ -36,35 +36,36 @@ PHP 4 NEWS |
|
|
|
This lets you do $a = $b = $c = true; extract($_REQUEST,EXTR_IF_EXISTS); |
|
|
|
and you only get the global request variables you have defined imported |
|
|
|
into your symbol table. (Rasmus) |
|
|
|
- Fixed pg_pconnect(). It catches broken connection and reconnects to PostgreSQL |
|
|
|
server always. When PostgreSQL is rebooted, web server reboot is not needed |
|
|
|
to avoid errors. (Yasuo) |
|
|
|
- Fixed pg_pconnect(). It catches broken connection and reconnects to |
|
|
|
PostgreSQL server always. When PostgreSQL is rebooted, web server reboot is |
|
|
|
not needed to avoid errors. (Yasuo) |
|
|
|
- Fix --enable-safe-mode. This configure option was not working. (Yasuo) |
|
|
|
- Added function domxml_dump_node($doc,$node). Dumps a node plus all |
|
|
|
children into a string. (chregu) |
|
|
|
- Added function domxml_node_get_content() (chregu) |
|
|
|
- Added function domxml_node_get_content(). (chregu) |
|
|
|
- Added function domxml_dump_file($filename,[$compression]). Dumps XML to |
|
|
|
a file and uses compression, if specified (chregu) |
|
|
|
a file and uses compression, if specified. (chregu) |
|
|
|
- Added exslt integration (see http://exslt.org for details). To be |
|
|
|
configured with --with-dom-exslt[=DIR] (and --with-dom-xslt) (chregu, jaroslaw) |
|
|
|
configured with --with-dom-exslt[=DIR] (and --with-dom-xslt). (chregu, |
|
|
|
jaroslaw) |
|
|
|
- Don't touch any globals in session_unset() if register_globals is set |
|
|
|
to off. (Thies) |
|
|
|
- Added 3 new optional parameters to OCIFetchStatement(). They control |
|
|
|
the number of rows to skip at the beginning of the cursor, the |
|
|
|
maximun numer of rows that should be fetched and the format of the |
|
|
|
returned array. (Thies) |
|
|
|
- Updated the XSLT extension to support Sablotron 0.8 (Petr Cimprich) |
|
|
|
- Updated the XSLT extension to support Sablotron 0.8. (Petr Cimprich) |
|
|
|
- Fixed a bug in preg_match()/preg_match_all() when matching strings containing |
|
|
|
null bytes. (Andrei) |
|
|
|
- Added xpath_register_ns() function. This makes it possible to issue XPath |
|
|
|
queries with namespaces like for example: "//namespace:sampletag" |
|
|
|
queries with namespaces like for example: "//namespace:sampletag" . |
|
|
|
(Chris Jarecki) |
|
|
|
- Added multi-byte enabled regular expression functions. (Rui) |
|
|
|
- Added second parameter to count() that can be used to specify either normal |
|
|
|
or recursive counting. (patch by Vlad Bosinceanu <glipy@fx.ro>) |
|
|
|
- Added mb_get_info() to get internal settings of mbstring. |
|
|
|
- Added async query functions to PostgreSQL module (Yasuo) |
|
|
|
- Added pg_copy_to()/pg_copy_from() for PostgreSQL module (Youichi, Yasuo) |
|
|
|
- Added mb_get_info() to get internal settings of mbstring. (Rui) |
|
|
|
- Added async query functions to PostgreSQL module. (Yasuo) |
|
|
|
- Added pg_copy_to()/pg_copy_from() for PostgreSQL module. (Youichi, Yasuo) |
|
|
|
- Added IPv6 support in FTP extension. (Stig Venaas) |
|
|
|
- Added CLI (command line intrerface) sapi based on a cut-down version |
|
|
|
of the CGI sapi which is more suited for writing shell scripts. Some of |
|
|
|
@ -86,7 +87,7 @@ PHP 4 NEWS |
|
|
|
- Added flags parameter to preg_grep(). The only flag currently is |
|
|
|
PREG_GREP_INVERT that will make the function return entries that |
|
|
|
did not match. (Andrei) |
|
|
|
- Fixed several crash bugs in the xslt extension (Markus, Derick) |
|
|
|
- Fixed several crash bugs in the xslt extension. (Markus, Derick) |
|
|
|
- Fixed problem with dbase not returning very large (larger than long) |
|
|
|
integers properly. (Vlad) |
|
|
|
- Added concepts to IRCG: bailout-on-trivial issue, write output to |
|
|
|
@ -117,7 +118,7 @@ PHP 4 NEWS |
|
|
|
- Added generic Win 32 API extension. (jmoore) |
|
|
|
- Removed warning message about NONEXISTENT character set from mysql_connect() |
|
|
|
when the server's default character set != latin1. (Mysql Team) |
|
|
|
- Added Direct I/O extension for lowlevel access to the POSIX layer. (sterling) |
|
|
|
- Added Direct I/O extension for lowlevel access to the POSIX layer. (Sterling) |
|
|
|
- New SAPI module for the WebJames server on RISC OS. (Alex Waugh) |
|
|
|
- Made ldap_add (and modify) functions to throw a warning with illegal value |
|
|
|
arrays. Previously segfaulted or added wrong value. (Stig Venaas) |
|
|
|
@ -130,7 +131,7 @@ PHP 4 NEWS |
|
|
|
size. (Andrei) |
|
|
|
- Fixed a bug which caused $HTTP_RAW_POST_DATA not to be populated on a missing |
|
|
|
content-type even when always_populate_raw_post_data was On - fixed. (Rasmus) |
|
|
|
- Added session_cache_expire() function. Patch by anuradha@gnu.org (Andrei) |
|
|
|
- Added session_cache_expire() function. (patch by anuradha@gnu.org) (Andrei) |
|
|
|
- Added array_fill() function. (Rasmus) |
|
|
|
- Made Authorization header to be hidden from phpinfo() output in safe_mode. |
|
|
|
(Rasmus) |
|
|
|
@ -139,8 +140,8 @@ PHP 4 NEWS |
|
|
|
array entries to string. (Andrei) |
|
|
|
- Added user-space object overloading extension. (Andrei) |
|
|
|
- Added ldap_start_tls() function. (Stig Venaas, patch by kuenne@rentec.com) |
|
|
|
- Changed rand() and mt_rand() to be seed automatically if srand() or mt_srand() |
|
|
|
has not been called. (Sterling) |
|
|
|
- Changed rand() and mt_rand() to be seed automatically if srand() or |
|
|
|
mt_srand() has not been called. (Sterling) |
|
|
|
- Changed the seed options to srand() and mt_srand() to be optional. If the |
|
|
|
seed is not specified the most random seed possible is generated. (Sterling) |
|
|
|
- Added array_change_key_case() function that returns array with |
|
|
|
@ -164,7 +165,8 @@ PHP 4 NEWS |
|
|
|
in itself. (Andrei) |
|
|
|
- Added ini_get_all() function which returns all registered ini entries |
|
|
|
or entries for the specified extension. (Jani) |
|
|
|
- Added mailparse_uudecode_all() which extracts all uuencoded attachments. (Wez) |
|
|
|
- Added mailparse_uudecode_all() which extracts all uuencoded attachments. |
|
|
|
(Wez) |
|
|
|
- Added support for chinese encodings to htmlentities() and htmlspecialchars(). |
|
|
|
(Patch by Alan Knowles <alan_k@hklc.com> and Wez) |
|
|
|
- Improved support for autoconf-2.50+/libtool 1.4b+. (Jan Kneschke, Sascha) |
|
|
|
|