ext-uv/examples/rename.php

8 lines
112 B
PHP
Raw Permalink Normal View History

2012-06-22 18:48:29 +02:00
<?php
2020-02-15 22:36:03 +01:00
uv_fs_rename(uv_default_loop(), "moe", "moe2", function($result) {
2012-06-22 18:48:29 +02:00
var_dump($result);
});
uv_run();