PHP code example of andrewmackrodt / fsnotify
1. Go to this page and download the library: Download andrewmackrodt/fsnotify library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
andrewmackrodt / fsnotify example snippets
use Denimsoft\FsNotify\Event\FileEvent;
use Denimsoft\FsNotify\FsNotifyBuilder;
Builder()
->addChangeListener(function (FileEvent $event) {
echo sprintf(
"[%s] (%s) \"%s\" %s\n",
date('c'),
$event->getEventName(),
$event->getFilepath(),
json_encode($event->getMetadata())
);
})
->createFsNotify();
$fsNotify->start();