Files
react-inotify/examples/example.php

14 lines
296 B
PHP
Raw Normal View History

2025-11-10 13:36:25 +01:00
<?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";