ext-uv/examples/readdir.php

8 lines
107 B
PHP
Raw Permalink Normal View History

2012-06-23 07:18:38 +02:00
<?php
2020-02-15 22:36:03 +01:00
uv_fs_scandir(uv_default_loop(), ".", function($contents) {
var_dump($contents);
2012-06-23 07:18:38 +02:00
});
uv_run();