mirror of
https://github.com/danog/ext-uv.git
synced 2024-12-02 09:27:58 +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();
|