PHP Conference Japan 2024

EventConfig::requireFeatures

(PECL event >= 1.2.6-beta)

EventConfig::requireFeatures指定应用程序需要的事件方法特性

描述

public EventConfig::requireFeatures( int $feature ): bool

指定应用程序需要的事件方法特性

参数

feature

所需特性的位掩码。参见 EventConfig::FEATURE_* 常量

返回值

成功返回 true,失败返回 false

范例

示例 #1 EventConfig::requireFeatures() 例子

<?php
$cfg
= new EventConfig();

// 创建与配置关联的 event_base
$base = new EventBase($cfg);

// 要求 FDS 特性
if ($cfg->requireFeatures(EventConfig::FEATURE_FDS)) {
echo
"FDS 特性现在是必需的\n";

$base = new EventBase($cfg);
(
$base->getFeatures() & EventConfig::FEATURE_FDS)
and print
"FDS - 任意文件描述符类型,而不仅仅是套接字\n";
}
?>

以上示例将输出类似以下内容

FDS feature is now required
FDS - arbitrary file descriptor types, and not just sockets

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top