当前位置: 首页>>代码示例>>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;未经允许,请勿转载。