mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-27 04:24:45 +01:00
9 lines
111 B
PHP
9 lines
111 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
uv_fs_utime(uv_default_loop(),__FILE__, time(), time(),function(){
|
||
|
echo "Finished";
|
||
|
});
|
||
|
|
||
|
uv_run();
|