ext-uv/examples/utime.php

9 lines
111 B
PHP
Raw Normal View History

2012-06-22 18:58:00 +02:00
<?php
uv_fs_utime(uv_default_loop(),__FILE__, time(), time(),function(){
echo "Finished";
});
uv_run();