ext-uv/examples/fsevent.php

9 lines
164 B
PHP
Raw Normal View History

2012-06-23 07:18:38 +02:00
<?php
2020-02-15 22:36:03 +01:00
$fsevent = uv_fs_event_init(uv_default_loop(), "/tmp/", function($rsc, $name, $event, $status) {
2017-08-21 14:54:34 +02:00
var_dump($name, $event);
print PHP_EOL;
2020-02-15 22:36:03 +01:00
}, 0);
2012-06-23 07:18:38 +02:00
uv_run();