Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16142 программиста и 1779 роботов. Сейчас ищут 1633 программиста ...
inotify_read - Read events from an inotify instance
Вернуться к: Inotify Функции
inotify_read
(PECL inotify >= 0.1.2)
inotify_read — Read events from an inotify instance
Описание
array inotify_read
( resource
$inotify_instance
)Read inotify events from an inotify instance.
Возвращаемые значения
An array of inotify events or FALSE
if no events was pending and
inotify_instance
is non-blocking. Each event is an array with the following keys:
- wd is a watch descriptor returned by inotify_add_watch()
- mask is a bit mask of events
- cookie is a unique id to connect related events (e.g.
IN_MOVE_FROM
andIN_MOVE_TO
) - name is the name of a file (e.g. if a file was modified in a watched directory)
Смотрите также
- inotify_init() - Initialize an inotify instance
- stream_select() - Запускает эквивалент системного вызова select() на заданных массивах потоков с таймаутом, указанным параметрами tv_sec и tv_usec
- stream_set_blocking() - Устанавливает блокирующий/неблокирующий режим на потоке
- inotify_queue_len() - Return a number upper than zero if there are pending events
Вернуться к: Inotify Функции