EventConfig::avoidMethod

Tells libevent to avoid specific event method

Beschreibung

public bool EventConfig::avoidMethod ( string $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

  • EventBase::__construct