ftp_base::site() –

You appear to be a bot. Output may be restricted

Description

Usage

ftp_base::site( $command, $fnction );

Parameters

$command
( mixed ) required
$fnction
( mixed ) optional default: site –

Returns

void

Source

File name: wordpress/wp-admin/includes/class-ftp.php
Lines:

1 to 5 of 5
  function site($command, $fnction="site") {
    if(!$this->_exec("SITE ".$command, $fnction)) return FALSE;
    if(!$this->ftp_base::_checkCode()) return FALSE;
    return TRUE;
  }
 

 View on GitHub View on Trac