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