ext-uv/examples/sendfile.php

10 lines
199 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($read_fd){
$stdout = 0;
uv_fs_sendfile(uv_default_loop(),$stdout,$read_fd,0,6, function($result){
2012-06-23 07:18:38 +02:00
});
});
uv_run();