【发布时间】:2014-09-24 03:20:45
【问题描述】:
PHP 有 inotify 扩展名,但 HHVM 不支持它。
如何至少在 HHVM 上监视文件的 IN_CLOSE_WRITE 事件?
<?php // sample inotify code for PHP
$fd = inotify_init();
$watch_descriptor = inotify_add_watch($fd, __FILE__, IN_ATTRIB);
touch(__FILE__); // generate an event
$events = inotify_read($fd);
var_dump($events);
【问题讨论】: