2001-06-28 22:28:27 +08:00
|
|
|
* Change the odbc_fetch_into() function to require ALWAYS the first two
|
|
|
|
parameters ($conn_id and $array), and make the third (row) be optional.
|
|
|
|
|
2001-05-08 11:19:48 +08:00
|
|
|
* Remove --with-openlink configure option (--with-iodbc replaces it).
|
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Always build CGI (--disable-cgi option to disable).
|
2001-04-14 04:47:12 +08:00
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Move most extensions and PEAR packages out of the PHP CVS tree,
|
|
|
|
include them again during release packaging.
|
2001-04-14 04:47:12 +08:00
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Renaming functions, so that they all are conform to one standard form.
|
2001-04-14 07:52:15 +08:00
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Allow foreach($array as $key => &$value).
|
2001-04-16 21:54:10 +08:00
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Allow foreach($array as list($var1, $var2)).
|
2001-04-14 18:30:05 +08:00
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Clean up "$instance = &new object" syntax (default to the =& behaviour?).
|
2001-04-27 21:57:49 +08:00
|
|
|
|
2001-05-05 16:03:32 +08:00
|
|
|
* Allow to set a default value for call-by-reference-parameters. eg:
|
|
|
|
function hallo (&$pallo = NULL) {}
|
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Change PHP error messages, so that they point to pages or sections in the
|
|
|
|
PHP Manual.
|
2001-04-29 03:30:48 +08:00
|
|
|
|
2001-04-29 21:35:52 +08:00
|
|
|
* Fix Zend shallow copy issues with objects and arrays.
|
|
|
|
|
|
|
|
* Make all extensions thread-safe.
|
2001-05-04 04:21:06 +08:00
|
|
|
|
|
|
|
* Finish PHP streams abstraction, nuke all that issock stuff, implement SSL
|
|
|
|
socket support. (wez)
|
2001-05-05 07:39:31 +08:00
|
|
|
- ext/ftp/ -> all FILEs to streams
|
|
|
|
- ext/bz2/ -> convert to stream impl.
|
2001-06-04 21:13:08 +08:00
|
|
|
|
|
|
|
* Using arg_separator.input to implode args in the CGI sapi extension
|
|
|
|
and arg_separator.input to explode in php_build_argv().
|