Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/msabramo/php-inotify

Wrapper for PHP inotify module
https://github.com/msabramo/php-inotify

Last synced: 28 days ago
JSON representation

Wrapper for PHP inotify module

Awesome Lists containing this project

README

        

# php-inotify

A simple OO wrapper for PHP inotify module

## Requirements
* The [inotify module for PHP](http://www.php.net/manual/en/inotify.install.php "inotify module for PHP").

## Example
addWatch(__DIR__);
while (true) {
foreach ($inotify->read() as $result) {
echo 'Something happened to \''. __DIR__. '/'. $result->getName(). "'.\n";
}
}