(PECL event >= 1.2.6-beta)
EventConfig::__construct — 构造 EventConfig 对象
此函数没有参数。
示例 #1 EventConfig::__construct() 示例
<?php
// 避免 "select" 方法
$cfg = new EventConfig();
if ($cfg->avoidMethod("select")) {
echo "'select' 方法被避免\n";
}
// 创建与配置关联的 event_base
$base = new EventBase($cfg);
/* 现在 $base 被配置为避免选择后端(方法) */
?>