mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-27 04:24:45 +01:00
11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
|
|
uv_fs_event_init(uv_default_loop(),"/tmp/",function($rsc,$name,$event,$stat){
|
|
var_dump($name);
|
|
|
|
var_dump($event);
|
|
},0);
|
|
|
|
uv_run();
|