示例#1
0
 /**
  * Read file
  *
  * @param string $filename
  * @return bool
  */
 public function Read($filename)
 {
     if (!$this->SSHConnection->IsConnected())
         $this->Connect();
         
     return $this->SSHConnection->GetFile($filename);
 }