ftp_base::mkdir()
Method of the class: ftp_base{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ftp_base = new ftp_base(); $ftp_base->mkdir( $pathname );
- $pathname (required)
- -
ftp_base::mkdir() ftp base::mkdir code WP 6.7.1
function mkdir($pathname) { if(!$this->_exec("MKD ".$pathname, "mkdir")) return FALSE; if(!$this->_checkCode()) return FALSE; return TRUE; }