ext-uv/examples/async.php

11 lines
171 B
PHP
Raw Normal View History

2012-06-17 16:18:33 +02:00
<?php
$loop = uv_default_loop();
$async = uv_async_init($loop, function($status){
var_dump(1);
uv_unref(uv_default_loop());
});
uv_async_send($async);
uv_run();