mirror of
https://github.com/danog/ext-uv.git
synced 2024-12-02 09:27:58 +01:00
9 lines
155 B
PHP
9 lines
155 B
PHP
<?php
|
|
|
|
$fsevent = uv_fs_event_init(uv_default_loop(),"/tmp/",function($rsc,$name,$event,$stat){
|
|
var_dump($name, $event);
|
|
print PHP_EOL;
|
|
},0);
|
|
|
|
uv_run();
|