From: Andrei Zmievski Date: Tue, 30 May 2000 15:45:09 +0000 (+0000) Subject: retab X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~181 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0aed5fd91c9893eb1688f2f0184ca4e4aa6aeff7;p=php retab --- diff --git a/TODO b/TODO index 084f63529d..c4bcd91f59 100644 --- a/TODO +++ b/TODO @@ -74,17 +74,17 @@ ext/standard * add a version number to data serialized via serialize(). * array_add(), array_uniq(). (Andrei) * implement pathinfo() - $a = pathinfo("/some/file.bla"); + $a = pathinfo("/some/file.bla"); - => array("dirname" => "/some/", - "basename" => "file.bla", - "extension" => "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: + We could also make it return just one part as a sting if used + like this: - $a = pathinfo("/some/file.bla", PATHINFO_BASENAME); + $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.