ext-uv/examples/fsevevnt.php

11 lines
147 B
PHP
Raw Normal View History

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