EventConfig
PHP Manual

EventConfig::avoidMethod

(PECL event >= 1.2.6-beta)

EventConfig::avoidMethodTells libevent to avoid specific event method

Beschreibung

public bool EventConfig::avoidMethod ( int $method )

Tells libevent to avoid specific event method(backend). See » Creating an event base .

Parameter-Liste

method

The backend method to avoid. See EventConfig constants .

Rückgabewerte

Returns TRUE on success, otherwise FALSE.

Beispiele

Beispiel #1 EventConfig::avoidMethod() example

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

Siehe auch


EventConfig
PHP Manual