ext-uv/examples/fsevent.php

9 lines
155 B
PHP
Raw Normal View History

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