EventBase::getMethod
EventBase::getMethod
(PECL event >= 1.2.6-beta)
EventBase :: getMethod - 返回正在使用的事件方法
描述
public string EventBase::getMethod ( void )
参数
该功能没有参数。
返回值
表示使用的事件方法的字符串(后端)。
例子
示例#1 EventBase :: getMethod()示例
<?php
$cfg = new EventConfig(
if ($cfg->avoidMethod("select")) {
echo "`select' method avoided\n";
}
// Create event_base associated with the config
$base = new EventBase($cfg
echo "Event method used: ", $base->getMethod(), PHP_EOL;
?>
上面的例子会输出类似于:
`select' method avoided
Event method used: epoll