empress-php/inotify
Composer 安装命令:
composer require empress-php/inotify
包简介
Non-blocking ext-inotify wrapper for Amp
README 文档
README
inotify
Non-blocking ext-inotify wrapper for Amp
Install it
composer require empress-php/inotify
Example
<?php use Amp\Loop; use Empress\Inotify\Inotify; require_once __DIR__ . '/../vendor/autoload.php'; Loop::repeat(1000, function () { \touch(__FILE__); }); Loop::run(function () { $inotify = new Inotify(); $inotify->addWatch(__DIR__, \IN_ATTRIB); while ($events = yield $inotify->readEvents()) { \var_dump($events); } });
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-05-03