14 lines
296 B
PHP
14 lines
296 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
require_once __DIR__."/../vendor/autoload.php";
|
||
|
|
|
||
|
|
$in = new NoccyLabs\React\Inotify\Inotify();
|
||
|
|
|
||
|
|
$in->on("event", function ($event) {
|
||
|
|
var_dump($event);
|
||
|
|
});
|
||
|
|
|
||
|
|
$in->addWatch(__DIR__, IN_CREATE|IN_DELETE);
|
||
|
|
|
||
|
|
echo "Create and delete a file in the current directory and observe the output.\n";
|