ext-uv/examples/fsevevnt.php
2012-06-23 14:18:52 +09:00

11 lines
142 B
PHP

<?php
uv_fs_event_init(uv_default_loop(),"/tmp/",function($name,$event,$stat){
var_dump($name);
var_dump($event);
},0);
uv_run();