ext-uv/examples/sendfile.php

13 lines
339 B
PHP
Raw Normal View History

2012-06-23 07:18:38 +02:00
<?php
uv_fs_open(uv_default_loop(),__FILE__,UV::O_RDONLY,0, function($r){
uv_fs_open(uv_default_loop(),"moe.out",UV::O_WRONLY | UV::O_CREAT ,0644, function($x) use ($r){
uv_fs_sendfile(uv_default_loop(),$r,$x,0,126, function($result){
echo "sendfile";
var_dump($result);
});
});
});
uv_run();