コード例 #1
0
ファイル: Application.php プロジェクト: heesey/LeePHP-Socket
 /**
  * 构造函数。
  * 
  * @param \LeePHP\Bootstrap $ctx
  */
 function __construct($ctx)
 {
     parent::__construct($ctx);
     $this->core_version = swoole_version();
 }
コード例 #2
0
ファイル: Shell.php プロジェクト: heesey/LeePHP-Socket
 /**
  * 析构函数。
  */
 function __destruct()
 {
     parent::__destruct();
     $this->shell_ok = false;
     $this->shell_session = NULL;
 }
コード例 #3
0
ファイル: DataReceiver.php プロジェクト: heesey/LeePHP-Socket
 /**
  * 析构函数。
  */
 function __destruct()
 {
     parent::__destruct();
     unset($this->gets, $this->posts, $this->files);
 }
コード例 #4
0
ファイル: ProcessBase.php プロジェクト: heesey/LeePHP-Socket
 /**
  * 析构函数。
  */
 function __destruct()
 {
     parent::__destruct();
     unset($this->handler);
 }
コード例 #5
0
 /**
  * 析构函数。
  */
 function __destruct()
 {
     parent::__destruct();
     unset($this->serv, $this->cmd_data);
 }