PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

EventBase::getFeatures - Returns bitmask of features supported | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

EventBase::getFeatures

(PECL event >= 1.2.6-beta)

EventBase::getFeaturesReturns bitmask of features supported

説明

public int EventBase::getFeatures ( void )

Returns bitmask of features supported.

パラメータ

この関数にはパラメータはありません。

返り値

Returns integer representing a bitmask of supported features. See EventConfig::FEATURE_* constants .

例1 EventBase::getFeatures() example

<?php
// Avoiding "select" method
$cfg = new EventConfig();
if (
$cfg->avoidMethod("select")) {
    echo 
"`select' method avoided\n";
}

$base = new EventBase($cfg);

echo 
"Features:\n";
$features $base->getFeatures();
(
$features EventConfig::FEATURE_ET) and print("ET - edge-triggered IO\n");
(
$features EventConfig::FEATURE_O1) and print("O1 - O(1) operation for adding/deletting events\n");
(
$features EventConfig::FEATURE_FDS) and print("FDS - arbitrary file descriptor types, and not just sockets\n");
?>

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「EventBase::getFeatures - Returns bitmask of features supported」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | EventBase::getFeatures - Returns bitmask of features supported」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: