EventConfig::__construct
(PECL event >= 1.2.6-beta)
EventConfig::__construct — EventConfig 建構函式
參數
此函式沒有參數。
返回值
返回 EventConfig 對象。
範例
示例 #1 EventConfig::__construct() 示例
<?php
// 避免 "select" 方法
$cfg = new EventConfig();
if ($cfg->avoidMethod("select")) {
echo "'select' 方法失效\n";
}
// 建立跟 config 相關的 event_base
$base = new EventBase($cfg);
/* 現在 $base 配置為避免 select 後端(方法) */
?>
參見
- EventBase::__construct() - Constructs EventBase object