本文整理汇总了PHP中Exception::newThrow方法的典型用法代码示例。如果您正苦于以下问题:PHP Exception::newThrow方法的具体用法?PHP Exception::newThrow怎么用?PHP Exception::newThrow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Exception
的用法示例。
在下文中一共展示了Exception::newThrow方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: loop
/**
* 服务主体循环方法
*
* 接收请求及数据等相关处理
* 触发对应的回调事件
*
* @return void
*/
private function loop()
{
$arrRead = array($this->socket);
$arrWrite = null;
$arrExcept = null;
foreach ($this->connections as $key => $session) {
$arrRead[] = $session->socket;
}
$changes = socket_select($arrRead, $arrWrite, $arrExcept, $this->options['timeout']);
if ($changes === false) {
Exception::newThrow($this->socket);
}
if ($changes == 0) {
return;
}
foreach ($arrRead as $socket) {
if ($socket == $this->socket) {
$this->doAccept();
continue;
}
$this->doRead($socket);
}
}
示例2: __construct
/**
* 构造函数,初始化socket
*
* 不能直接new创建连接,只能通过factory()方法创建
*
* @param string $host 服务器ip地址
* @param number $port 服务器端口
*/
private function __construct($host, $port)
{
$this->host = $host;
$this->port = $port;
$this->socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($this->socket === false) {
throw new Exception('Socket create failure');
}
if (socket_set_option($this->socket, SOL_SOCKET, SO_REUSEADDR, 1) === false) {
Exception::newThrow($this->socket);
}
$this->running = true;
}