ext-uv/examples/fsevevnt.php

11 lines
142 B
PHP
Raw Normal View History

2012-06-23 07:18:38 +02:00
<?php
uv_fs_event_init(uv_default_loop(),"/tmp/",function($name,$event,$stat){
var_dump($name);
var_dump($event);
},0);
uv_run();