ftp_base::site
Method of the class: ftp_base{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ftp_base = new ftp_base(); $ftp_base->site( $command, $fnction );
- $command(required)
- .
- $fnction
- .
Default:"site"
ftp_base::site() ftp base::site code WP 7.0
function site($command, $fnction="site") {
if(!$this->_exec("SITE ".$command, $fnction)) return FALSE;
if(!$this->_checkCode()) return FALSE;
return TRUE;
}