ext-uv/examples/fstat.php

10 lines
187 B
PHP
Raw Normal View History

2012-06-23 06:00:27 +02:00
<?php
uv_fs_open(uv_default_loop(), __FILE__, UV::O_RDONLY, 0, function($r){
uv_fs_fstat(uv_default_loop(), $r, function($result, $da){
var_dump($da);
});
});
uv_run();