I'm trying to get Inotify working on PHP7. I've installed the required packages:
sudo apt install php php-dev
And installed Inotify with Pecl:
sudo pecl install inotify
But it doesn't work:
$ php -r "var_dump(function_exists('inotify_init'));"
bool(false)