1999-10-27 03:49:36 +08:00
|
|
|
Things to do or at least think about doing in the future. Name in
|
|
|
|
parenthesis means that person has taken on this project.
|
|
|
|
|
2000-02-02 19:37:22 +08:00
|
|
|
Zend
|
|
|
|
----
|
2002-03-01 18:02:48 +08:00
|
|
|
* Allow foreach ($array as $k => list($a, $b)) syntax for multi
|
2001-02-05 22:29:21 +08:00
|
|
|
dimensional arrays.
|
2002-03-01 18:02:48 +08:00
|
|
|
* Look at replacing c-lib call tolower().
|
|
|
|
* Make hash API functions work with HASH_OF() to save time.
|
|
|
|
* Native large number support (probably with GNU GMP)
|
|
|
|
* Const'ify APIs. Right now, many functions leave parameters untouched,
|
|
|
|
but don't declare those as const. This makes interaction with other
|
|
|
|
interfaces difficult which pass const parameters to us.
|
|
|
|
|
2000-02-02 19:37:22 +08:00
|
|
|
|
1999-11-24 04:53:20 +08:00
|
|
|
global
|
|
|
|
------
|
2002-03-01 18:02:48 +08:00
|
|
|
* Make sure that all ZTS globals get destructed. Most ts_allocate_id()
|
1999-12-23 20:52:12 +08:00
|
|
|
calls should have a dtor entry.
|
2002-03-01 18:02:48 +08:00
|
|
|
* on some platforms unimplemented function will just do nothing
|
|
|
|
(e.g. symlink) they should print a warning or not even be defined!
|
|
|
|
(DONE ?)
|
1999-12-22 02:56:09 +08:00
|
|
|
* --enable-all in configure. (--enable-shared=max ...)
|
|
|
|
* make configure print out a summary when it's done (like XEmacs)
|
1999-11-24 04:53:20 +08:00
|
|
|
* replace standard functions which work on static data with
|
2000-11-03 01:07:19 +08:00
|
|
|
reentrancy-safe functions (DONE?).
|
2000-01-07 19:12:29 +08:00
|
|
|
* make SAPI conform to CGI/1.1. Currently, all SAPI modules
|
|
|
|
define REMOTE_ADDR etc. themselves and reach only various level
|
|
|
|
of compliance.
|
2002-03-01 18:02:48 +08:00
|
|
|
* see what functions might need to be changed to use HashPosition, so
|
|
|
|
that the internal array pointer is not affected.
|
|
|
|
* Move most extensions and PEAR packages out of the PHP CVS tree,
|
|
|
|
include them again during release packaging.
|
|
|
|
|
|
|
|
Other
|
|
|
|
* use thread-safe resolver functions (either require BIND 8 or adns).
|
|
|
|
* implement javadoc based function docs template system.
|
2003-05-13 16:52:25 +08:00
|
|
|
* provide optional IPv6 support (seems to be done?).
|
2000-04-01 23:51:34 +08:00
|
|
|
* find a better way to implement script timeouts. SIGVTALRM is used
|
|
|
|
by some POSIX threads implementations (i.e. OpenBSD) and is not
|
|
|
|
available in ZTS mode.
|
2003-04-13 06:29:00 +08:00
|
|
|
* Implement flush feature suitable for nested output buffers.
|
2002-03-01 18:02:48 +08:00
|
|
|
|
2003-05-13 16:52:25 +08:00
|
|
|
Streams
|
|
|
|
-------
|
|
|
|
* Route filestat.c through the wrapper layer; isolate the statcache code
|
2003-05-13 17:06:14 +08:00
|
|
|
so that it is independent of php functions and can be applied to any
|
|
|
|
stream/path.
|
2003-05-15 06:46:27 +08:00
|
|
|
* Implement generalized connection pool for stated protocols such as
|
|
|
|
ftp and http/1.1 (using keep-alive) to avoid having to negotiate
|
|
|
|
new command/request stream for each subsequent call; Possibly store
|
|
|
|
resources in contexts (creating a default context if necessary) to
|
|
|
|
allow segmentation of connection pools.
|
2003-05-13 17:06:14 +08:00
|
|
|
* Add a method to take ownership of the memory buffer in memory streams so
|
|
|
|
that generating string values for zvals doesn't require an estrdup.
|
2003-05-13 16:52:25 +08:00
|
|
|
* bundle and use curl lib for fopen wrapper.
|
|
|
|
|
1999-11-24 06:35:23 +08:00
|
|
|
documentation
|
|
|
|
-------------
|
2002-03-01 18:02:48 +08:00
|
|
|
* Add remarks in the documentation which functions are not implemented
|
|
|
|
on win32.
|
|
|
|
* Add remarks in the documentation which functions are not binary-safe.
|
|
|
|
* Update curl documentation (DONE?)
|
2002-03-01 18:24:13 +08:00
|
|
|
* Add developer documentation.
|
|
|
|
* Add detailed documentation for Java extension.
|
2001-02-04 17:19:01 +08:00
|
|
|
|
|
|
|
ext/curl
|
|
|
|
--------
|
2001-02-05 22:27:10 +08:00
|
|
|
* Have a warning scheme for when people use unsupported features.
|
1999-11-24 04:53:20 +08:00
|
|
|
|
1999-12-05 01:30:39 +08:00
|
|
|
ext/oci8
|
|
|
|
--------
|
2002-03-01 18:02:48 +08:00
|
|
|
* All OCIFetch*() functions should return 0 for no more data and false on
|
|
|
|
error.
|
|
|
|
* Have a flag that trims trailing spaces from CHAR fields on retrieval.
|
|
|
|
* Make allow_call_time_pass_reference=Off working.
|
|
|
|
* For additional todo information, see oci8.c, in ext/oci8
|
1999-12-05 01:30:39 +08:00
|
|
|
|
2002-09-19 20:49:23 +08:00
|
|
|
ext/odbc
|
|
|
|
--------
|
|
|
|
For PHP 4.3.0:
|
|
|
|
* update all php_error calls to php_error_docref where valid
|
|
|
|
* integrate EXPERIMENTAL ODBC update for use in PHP 5.0, use for
|
|
|
|
testing purposes only.
|
|
|
|
|
|
|
|
For PHP 5.0.0
|
|
|
|
* Activate EXPERIMENTAL ODBC codebase update
|
|
|
|
|
2000-05-02 01:58:39 +08:00
|
|
|
ext/pcre
|
|
|
|
--------
|
2001-02-08 12:55:49 +08:00
|
|
|
* Allow user to set PCRE_NOTEMPTY, PCRE_ANCHORED at execution time, maybe
|
2000-04-16 21:44:38 +08:00
|
|
|
|
2002-06-11 21:48:49 +08:00
|
|
|
ext/pcntl
|
|
|
|
---------
|
|
|
|
* Change internal callback handler to use TICKS
|
|
|
|
* Remove all zend_extension code
|
2002-06-11 21:50:00 +08:00
|
|
|
* Add object callback support to pcntl_signal()
|
2002-06-11 21:48:49 +08:00
|
|
|
|
2000-05-29 23:54:38 +08:00
|
|
|
ext/session
|
|
|
|
-----------
|
2002-03-01 18:02:48 +08:00
|
|
|
For PHP 4.3.0:
|
|
|
|
* session_abort() to abort session. ie: Do not save session data.
|
|
|
|
* Allow unset($_SESSION) or unset($HTTP_SESSION_VARS) to unset
|
|
|
|
session vars regardless of register_globals setting.
|
|
|
|
|
|
|
|
Other:
|
|
|
|
* Maybe implement finer-grained session variables that could be
|
2000-05-29 23:54:38 +08:00
|
|
|
locked individually.
|
2002-03-01 18:02:48 +08:00
|
|
|
* Write a network-transparent storage back-end with fallover
|
2000-06-30 08:40:07 +08:00
|
|
|
facilities
|
2002-03-01 18:02:48 +08:00
|
|
|
* Provide a callback facility which is executed upon encountering
|
|
|
|
an unknown class name during deserialization
|
2000-05-29 23:54:38 +08:00
|
|
|
|
1999-10-27 03:49:36 +08:00
|
|
|
ext/standard
|
|
|
|
------------
|
2002-03-01 18:02:48 +08:00
|
|
|
* Add a version number to data serialized via serialize().
|
|
|
|
* Possibly modify parsing of GPC data to automatically create arrays if
|
2000-02-16 22:50:48 +08:00
|
|
|
variable name is seen more than once.
|
2002-03-01 18:02:48 +08:00
|
|
|
* Implement regex-cache for url-functions.
|
|
|
|
* Move socket related functions to fsock.c.
|
2000-03-04 01:08:18 +08:00
|
|
|
|
2000-05-02 01:58:39 +08:00
|
|
|
ext/wddx
|
|
|
|
--------
|
2002-03-01 18:02:48 +08:00
|
|
|
* See if we can support the remaining data types:
|
2000-05-02 01:58:39 +08:00
|
|
|
binary
|
|
|
|
|
|
|
|
http://www.wddx.org/WDDX_SDK_10a/7__References/WDDX_DTD.htm
|
|
|
|
(Andrei)
|
|
|
|
|
|
|
|
* implement wddx_packet_as_javascript(). (Andrei)
|
|
|
|
|
2000-03-04 01:08:18 +08:00
|
|
|
other cool stuff
|
|
|
|
----------------
|
|
|
|
* PVM extension
|
2003-05-13 17:06:14 +08:00
|
|
|
|
|
|
|
vim:et:sw=4:ts=4
|