php-src/TODO

100 lines
3.5 KiB
Plaintext
Raw Normal View History

1999-10-26 19:49:36 +00: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 11:37:22 +00:00
Zend
----
2000-04-28 12:40:42 +00:00
* allow foreach ($array as $k => &$val) syntax. right now we cannot
2000-02-26 16:14:34 +00:00
traverse an array without copying each element.
2000-04-28 11:04:35 +00:00
* look at replacing c-lib call tolower().
2000-02-02 11:37:22 +00:00
1999-11-23 20:53:20 +00:00
global
------
2000-04-28 12:40:42 +00:00
* always build the standalone executable as well as the chosen SAPI
target.
2000-03-16 03:14:03 +00:00
* make sure all source files have the "right" copyright.
2000-02-27 18:06:12 +00: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 12:52:12 +00:00
* make sure that all ZTS globals get destructed. Most ts_allocate_id()
calls should have a dtor entry.
1999-12-21 18:56:09 +00: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-23 20:53:20 +00:00
* replace standard functions which work on static data with
2000-04-28 12:40:42 +00:00
reentrancy-safe functions.
* on some platforms unimplemented function will just do nothing (e.g. symlink)
they should print a warning or not even be defined!
* implement javadoc based function docs template system.
* use thread-safe resolver functions (either require BIND 8 or adns).
* provide optional IPv6 support.
2000-01-07 11:12:29 +00:00
* make SAPI conform to CGI/1.1. Currently, all SAPI modules
define REMOTE_ADDR etc. themselves and reach only various level
of compliance.
2000-04-01 15:51:34 +00: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.
* add aliases to functions to conform to new naming conventions, e.g.
str_to_upper().
1999-11-23 22:35:23 +00:00
documentation
-------------
1999-11-23 22:46:41 +00: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-23 20:53:20 +00:00
2000-03-16 03:14:03 +00:00
ext/dav
--------
2000-04-28 12:40:42 +00:00
* rewrite.
2000-03-16 03:14:03 +00:00
2000-05-01 17:58:39 +00:00
ext/mcrypt
----------
* port to mcrypt-2.6 or later
1999-12-04 17:30:39 +00:00
ext/oci8
--------
1999-12-21 18:56:09 +00:00
* all OCIFetch*() functions should return 0 for no more data and false on error.
1999-12-04 17:30:39 +00:00
2000-05-01 17:58:39 +00:00
ext/pcre
--------
* have a non-greedy option for preg_replace().
* have an option for preg_grep() to return keys as well.
* update the online docs from version 3.1 man page
2000-04-16 13:44:38 +00:00
1999-10-26 19:49:36 +00:00
ext/standard
------------
2000-03-16 03:14:03 +00:00
* add a version number to data serialized via serialize().
2000-04-28 12:40:42 +00:00
* array_add(), array_rand(), array_uniq(). (Andrei)
2000-04-12 21:50:17 +00:00
* implement pathinfo() (what the heck is it?)
2000-02-16 14:50:48 +00: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.
2000-04-28 12:40:42 +00:00
* strpad(). (Andrei)
* strcase_replace(). (Andrei)
* comparing arrays semantically (like Python). (Andrei)
* move socket related functions to fsock.c.
2000-05-01 16:39:05 +00:00
* get_defined_funcs(), get_defined_vars().
1999-12-21 18:56:09 +00:00
* NOT binary safe:
strtok()
basename()
dirname()
strrpos()
strrchr()
strip_tags()
2000-05-01 17:58:39 +00:00
ext/wddx
--------
* implement __sleep() and __wakeup() the way serialize()/unserialize() do.
* See if we can support the remaining datatypes:
dateTime
binary
recordset
http://www.wddx.org/WDDX_SDK_10a/7__References/WDDX_DTD.htm
(Andrei)
* implement wddx_packet_as_javascript(). (Andrei)
* aways escape '&' and '<' in serialized data. (Thies)
2000-05-01 17:58:39 +00:00
other cool stuff
----------------
* PVM extension