* 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.