mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-27 04:24:45 +01:00
8 lines
106 B
PHP
8 lines
106 B
PHP
<?php
|
|
|
|
uv_fs_readdir(uv_default_loop(), ".", 0, function($result, $da){
|
|
var_dump($da);
|
|
});
|
|
|
|
uv_run();
|