summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2000-09-11 13:52:22 +0000
committerAndrei Zmievski <andrei@php.net>2000-09-11 13:52:22 +0000
commit5ed3e24f47674036b0c02ff6b99abc78e97b815d (patch)
treecc59294491f92a97e4a9211fd851a5c0816e2e8e /TODO
parent3ab30838d73b709222bc3f318bcf35f25f5184fe (diff)
downloadphp-git-5ed3e24f47674036b0c02ff6b99abc78e97b815d.tar.gz
(PHP pathinfo) Fixed leaks, saved some memory allocations, added
more error checking.
Diffstat (limited to 'TODO')
-rw-r--r--TODO13
1 files changed, 0 insertions, 13 deletions
diff --git a/TODO b/TODO
index 7072466cfd..420c58a0e1 100644
--- a/TODO
+++ b/TODO
@@ -78,19 +78,6 @@ ext/standard
------------
* add a version number to data serialized via serialize().
* array_add(). (Andrei)
- * implement pathinfo()
- $a = pathinfo("/some/file.bla");
-
- => array("dirname" => "/some/",
- "basename" => "file.bla",
- "extension" => "bla");
-
-
- We could also make it return just one part as a sting if used
- like this:
-
- $a = pathinfo("/some/file.bla", PATHINFO_BASENAME);
-
* possibly modify parsing of GPC data to automatically create arrays if
variable name is seen more than once.
* implement regex-cache for url-functions.