Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18240 программистов и 1680 роботов. Сейчас ищут 695 программистов ...
Event::free - Ошибка
Вернуться к: Event
Event::free
(PECL libevent >= 0.0.1)
Event::free — Make event non-pending and free resources allocated for this event.
Описание
public
void
Event::free
( void
)
Removes event from the list of events monitored by libevent, and free resources allocated for the event.
Внимание
The
Event::free()
method currently doesn't destruct the object itself. To destruct the
object completely call
unset()
, or assign NULL
.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Смотрите также
- Event::__construct() - Constructs Event object
Вернуться к: Event