inotify_read

(PECL inotify >= 0.1.2)

inotify_read从 inotify 实例读取事件

说明

inotify_read(resource $inotify_instance): array

从 inotify 实例读取 inotify 事件。

参数

inotify_instance

inotify_init()返回的资源

返回值

返回 inotify 事件数组。在没有待处理事件或 inotify_instance 非阻塞时返回 false。事件发生时都会返回包含以下键的数组:

  • wd 是由 inotify_add_watch() 返回的监听描述符
  • mask 是 events 的位掩码
  • cookie 是连接相关事件(例如:IN_MOVE_FROMIN_MOVE_TO)的唯一 id
  • name 是文件名(例如:监听目录中被修改的文件)

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top