The below is a php function:
bool mkdir ( string $pathname [, int $mode = 0777 [, bool $recursive = false [, resource $context ]]] )
I would like to call the function, specifying the first and the third parameters, leaving the second default. Can I?
|
The below is a php function:
I would like to call the function, specifying the first and the third parameters, leaving the second default. Can I? |
||||
|
|
|
No, you cannot. See http://www.php.net/manual/en/functions.arguments.php esp. ex #5 and #6 |
|||
|
|