本文整理匯總了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 />');
}
}
示例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;
}