php-src/TODO-4.2.txt

30 lines
952 B
Plaintext
Raw Normal View History

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