Re: Does this seem wrong to anyone else? | |
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] | |
1055 function mkdir_recursive($pathname, $mode)
1056 {
1057 is_dir(dirname($pathname)) ||
mkdir_recursive(dirname($pathname), $mode);
1058 return is_dir($pathname) || @mkdir($pathname, $mode);
1059 }
Is this function defined within a class? From which scope do you call
this method? Where is the method defined and from where do you call it?
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[Search] [PHP Home] [Free Matchmaking Site] [Apache Users] [PHP on Windows] [Programming PHP] [Kernel Newbies] [PHP Install] [PHP Classes] [Postgresql] [Postgresql PHP] [PHP Books] [PHP for Windows] [Never a Charge Dating] [PHP Databases] [PHP SOAP] [PHP Books]
![]() |