コード例 #1
0
ファイル: VirtualCLI.php プロジェクト: steveorevo/virtual-cli
 /**
  * Close the given virtual commandline.
  */
 public function close()
 {
     $args = array('console_id' => $this->id, 'action' => 'close');
     return VCLIManager::send($args);
 }
コード例 #2
0
 /**
  * Shutdown and quit all VirtualCLI objects and removes the vcli native binary from memory.
  */
 static function shutdown()
 {
     $args = array('action' => 'quit');
     VCLIManager::send($args);
 }