EventBase::getMethod

(PECL event >= 1.2.6-beta)

EventBase::getMethod返回使用的事件方法

说明

public EventBase::getMethod(): string

参数

此函数没有参数。

返回值

表示使用的事件方法(后端)的字符串。

范例

范例 #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

参见

添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top