1<?php
2
3uv_fs_rmdir(uv_default_loop(), "hoge", function($result){
4    var_dump($result);
5});
6
7uv_run();
8