ext-uv/examples/fstat.php

10 lines
197 B
PHP
Raw Permalink Normal View History

2012-06-23 06:00:27 +02:00
<?php
2020-02-15 22:36:03 +01:00
uv_fs_open(uv_default_loop(), __FILE__, UV::O_RDONLY, 0, function($file) {
uv_fs_fstat(uv_default_loop(), $file, function($file, $stat) {
var_dump($stat);
2012-06-23 06:00:27 +02:00
});
});
uv_run();