php-src/TODO

138 lines
5.0 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
----
2000-04-28 20:40:42 +08:00
* allow foreach ($array as $k => &$val) syntax. right now we cannot
2000-02-27 00:14:34 +08:00
traverse an array without copying each element.
2001-02-05 22:29:21 +08:00
* allow foreach ($array as $k => list($a, $b)) syntax for multi
dimensional arrays.
2000-04-28 19:04:35 +08:00
* look at replacing c-lib call tolower().
2000-08-25 01:09:26 +08:00
* make hash API functions work with HASH_OF() to save time.
2000-10-12 17:20:29 +08:00
* native large number support (probably with GNU GMP)
2000-11-03 01:18:21 +08:00
* 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.
2001-02-05 22:29:21 +08:00
* add try..catch/throw exception handling
2001-08-23 17:18:21 +08:00
* Add configure test to determine if dlsym() requires underscore and set
DLSYM_NEEDS_UNDERSCORE accordingly. Perl and zsh have it in configure,
for example.
2000-02-02 19:37:22 +08:00
1999-11-24 04:53:20 +08:00
global
------
* make everything on the language-level independent of your locale setings.
2000-03-16 11:14:03 +08:00
* make sure all source files have the "right" copyright.
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
2000-11-03 01:07:19 +08:00
reentrancy-safe functions (DONE?).
2000-04-28 20:40:42 +08:00
* 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 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.
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.
* add aliases to functions to conform to new naming conventions, e.g.
str_to_upper().
2000-06-29 05:24:23 +08:00
* see what functions might need to be changed to use HashPosition, so
that the internal array pointer is not affected.
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.
2001-02-05 22:27:10 +08:00
* improve documentation for the sablotron extension
* update curl documentation
* write documentation for the bzip2 extension
* write documentation for the zziplib extension
2001-02-04 17:19:01 +08:00
ext/curl
--------
2001-02-05 22:27:10 +08:00
* Use the cURL write handler to save data for use when returning data or outputting
data.
* Have a warning scheme for when people use unsupported features.
1999-11-24 04:53:20 +08:00
2000-03-16 11:14:03 +08:00
ext/dav
--------
2000-04-28 20:40:42 +08:00
* rewrite.
2000-03-16 11:14:03 +08:00
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.
2000-05-04 09:01:38 +08:00
* have a flag that trims trailing spaces from CHAR fields on retrieval.
2001-02-05 22:27:10 +08:00
* 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
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
* add option to preg_grep() to return entries that _don't_ match
2000-04-16 21:44:38 +08:00
2001-02-04 17:19:01 +08:00
ext/sablot
----------
2001-02-05 22:27:10 +08:00
* Re-write the error handling and reporting interface
* Cleanup the underlying code a bit
* Add proper support for the message handlers
2001-02-04 17:19:01 +08:00
2000-05-29 23:54:38 +08:00
ext/session
-----------
2000-05-29 23:55:15 +08:00
* maybe implement finer-grained session variables that could be
2000-05-29 23:54:38 +08:00
locked individually.
2000-06-30 08:40:07 +08:00
* write a network-transparent storage back-end with fallover
facilities
* provide a callback facility which is executed upon encountering
an unknown classname during deserialization
2000-05-29 23:54:38 +08:00
2001-02-04 17:19:01 +08:00
ext/sockets
-----------
* Make the extension work on windows (Daniel Beulshausen)
2001-02-05 22:27:10 +08:00
* Make the extension work with Solaris and the Sun GCC
2001-02-04 17:19:01 +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().
* array_add(). (Andrei)
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.
2001-02-09 03:11:47 +08:00
* stri_replace(). (Andrei)
2000-04-28 20:40:42 +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()
2000-10-12 06:54:56 +08:00
* rewrite win32 SMTP code to be useable for *ix to, maybe as a (default)
module of its own (Hartmut)
2001-02-04 17:19:01 +08:00
ext/zziplib
------------
2001-02-05 22:27:10 +08:00
* more fully support the zziplib api
2001-02-04 17:19:01 +08:00
2000-05-02 01:58:39 +08:00
ext/wddx
--------
* 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)
other cool stuff
----------------
* PVM extension