php-src/TODO

50 lines
1.8 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.
1999-11-23 20:53:20 +00:00
global
------
1999-12-23 15:18:56 +00: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 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
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-23 22:46:41 +00:00
* on some platforms unimplemented function will just do nothing (eg symlink)
they should print a warning or be not even defined!
1999-12-21 18:56:09 +00:00
* banish the legacy of php3_ prefixes
* implement javadoc based function docs template system
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
1999-12-21 14:51:41 +00:00
ext/apache
--------
1999-12-21 18:56:09 +00:00
* all apache specific functions should be in sapi/apache
1999-12-21 14:51:41 +00:00
1999-12-04 17:30:39 +00:00
ext/oci8
--------
1999-12-21 18:56:09 +00:00
* map boolean value false to oracle NULL.
* all OCIFetch*() functions should return 0 for no more data and false on error.
1999-12-04 17:30:39 +00:00
1999-10-26 19:49:36 +00:00
ext/standard
------------
1999-11-23 22:46:41 +00:00
* strpad() (Andrei)
1999-12-21 18:56:09 +00:00
* comparing arrays semantically (like Python) (Andrei)
* NOT binary safe:
strtok()
basename()
dirname()
strrpos()
strrchr()
strip_tags()