當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Daemon::noError方法代碼示例

本文整理匯總了PHP中PHPDaemon\Core\Daemon::noError方法的典型用法代碼示例。如果您正苦於以下問題:PHP Daemon::noError方法的具體用法?PHP Daemon::noError怎麽用?PHP Daemon::noError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PHPDaemon\Core\Daemon的用法示例。


在下文中一共展示了Daemon::noError方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: errorHandler

 /**
  * Error handler
  * @param integer $errno
  * @param string $errstr
  * @param string $errfile
  * @param integer $errline
  * @param array $errcontext
  */
 public static function errorHandler($errno, $errstr, $errfile, $errline, $errcontext)
 {
     Daemon::$noError = false;
     $l = error_reporting();
     if ($l === 0) {
         if (!Daemon::$restrictErrorControl) {
             return;
         }
     } elseif (!($l & $errno)) {
         return;
     }
     static $errtypes = [E_ERROR => 'Fatal error', E_WARNING => 'Warning', E_PARSE => 'Parse error', E_NOTICE => 'Notice', E_PARSE => 'Parse error', E_USER_ERROR => 'Fatal error (userland)', E_USER_WARNING => 'Warning (userland)', E_USER_NOTICE => 'Notice (userland)', E_STRICT => 'Notice (userland)', E_RECOVERABLE_ERROR => 'Fatal error (recoverable)', E_DEPRECATED => 'Deprecated', E_USER_DEPRECATED => 'Deprecated (userland)'];
     $errtype = $errtypes[$errno];
     Daemon::log($errtype . ': ' . $errstr . ' in ' . $errfile . ':' . $errline . "\n" . Debug::backtrace());
     if (Daemon::$context instanceof \PHPDaemon\Request\Generic) {
         Daemon::$context->out('<strong>' . $errtype . '</strong>: ' . $errstr . ' in ' . basename($errfile) . ':' . $errline . '<br />');
     }
 }
開發者ID:aleksraiden,項目名稱:phpdaemon-sockjs-example,代碼行數:26,代碼來源:Daemon.php

示例2: write

 /**
  * Send data to the connection. Note that it just writes to buffer that flushes at every baseloop
  * @param  string $data Data to send
  * @return boolean Success
  */
 public function write($data)
 {
     if (!$this->alive) {
         Daemon::log('Attempt to write to dead IOStream (' . get_class($this) . ')');
         return false;
     }
     if (!isset($this->bevWrite)) {
         return false;
     }
     if (!strlen($data)) {
         return true;
     }
     $this->writing = true;
     Daemon::$noError = true;
     if (!$this->bevWrite->write($data) || !Daemon::$noError) {
         $this->close();
         return false;
     }
     return true;
 }
開發者ID:Mrhjx2,項目名稱:phpdaemon,代碼行數:25,代碼來源:ShellCommand.php


注:本文中的PHPDaemon\Core\Daemon::noError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。