php-src/TODO

95 lines
3.2 KiB
Plaintext
Raw Normal View History

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
----
* allow foreach ($array as $k => &$val) syntax. right now we can not
2000-02-27 00:14:34 +08:00
traverse an array without copying each element.
2000-03-16 11:14:03 +08:00
* look al replacing c-lib call tolower().
2000-02-02 19:37:22 +08:00
1999-11-24 04:53:20 +08:00
global
------
2000-03-16 11:14:03 +08:00
* make sure all source files have the "right" copyright.
2000-02-28 02:06:12 +08:00
* the following modules still use PHP3_TLS_*() macros (and thereby don't
work in ZTS mode): ext/dav/dav.c, ext/db/db.c, ext/gd/gd.c, ext/ldap/ldap.c
1999-12-23 23:18:56 +08:00
* let every module (source-file) have it's own module & function_entry
block. Right now the math functions are in math.c but the corresponding
function-entries are in basic_functions.
1999-12-23 20:52:12 +08:00
* make sure that all ZTS globals get destructed. Most ts_allocate_id()
calls should have a dtor entry.
1999-12-22 02:56:09 +08:00
* activate all extensions by default that don't rely on external
dependices. (eg ftp)
* --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
reentrant-save functions
* there is only one current directory per process; to make
chdir() etc. thread-safe, we must introduce a per-thread
current directory
1999-11-24 06:46:41 +08:00
* on some platforms unimplemented function will just do nothing (eg symlink)
they should print a warning or be not even defined!
1999-12-22 02:56:09 +08:00
* banish the legacy of php3_ prefixes
* implement javadoc based function docs template system
2000-01-02 05:20:35 +08:00
* use thread-safe resolver functions (either require BIND 8 or adns)
2000-02-29 00:00:23 +08:00
* check for incorrect *_r (time related) on HPSUX
2000-01-02 05:20:35 +08:00
* provide optional IPv6 support
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.
1999-11-24 06:35:23 +08:00
documentation
-------------
1999-11-24 06:46:41 +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.
1999-11-24 04:53:20 +08:00
2000-02-28 02:21:18 +08:00
ext/pcre
--------
* use/support latest pcre v3.1.
2000-01-03 01:56:02 +08:00
ext/wddx
--------
2000-02-28 22:04:57 +08:00
* See if we can support the remaining datatypes:
dateTime
binary
recordset
http://www.wddx.org/WDDX_SDK_10a/7__References/WDDX_DTD.htm
2000-02-27 00:14:34 +08:00
* implement wddx_packet_as_javascript(). (Andrei)
2000-01-03 01:56:02 +08:00
2000-03-16 11:14:03 +08:00
ext/dav
--------
* rewrite
1999-12-05 01:30:39 +08:00
ext/oci8
--------
1999-12-22 02:56:09 +08:00
* all OCIFetch*() functions should return 0 for no more data and false on error.
1999-12-05 01:30:39 +08:00
2000-02-28 02:12:57 +08:00
ext/snmp
--------
* port to latest UCD-SNMP 4.1 (even doesn't compile)
2000-02-28 22:04:57 +08:00
1999-10-27 03:49:36 +08:00
ext/standard
------------
2000-03-16 11:14:03 +08:00
* add a version number to data serialized via serialize().
2000-02-27 00:14:34 +08:00
* array_add(), array_rand() (Andrei)
2000-02-20 00:05:26 +08:00
* implement pathinfo()
2000-02-16 22:50:48 +08:00
* possibly modify parsing of GPC data to automatically create arrays if
variable name is seen more than once.
* implement regex-cache for url-functions.
1999-11-24 06:46:41 +08:00
* strpad() (Andrei)
2000-01-29 01:29:37 +08:00
* stri_replace() (Andrei)
1999-12-22 02:56:09 +08:00
* comparing arrays semantically (like Python) (Andrei)
2000-02-02 01:17:08 +08:00
* move socket related functions to fsock.c
1999-12-22 02:56:09 +08:00
* NOT binary safe:
strtok()
basename()
dirname()
strrpos()
strrchr()
strip_tags()
other cool stuff
----------------
* PVM extension