ext-uv/examples/pipe.php

13 lines
202 B
PHP
Raw Normal View History

2012-06-02 14:45:43 +02:00
<?php
2012-07-10 16:44:54 +02:00
$pipe = uv_pipe_init(uv_default_loop(), 0);
2012-06-02 14:45:43 +02:00
uv_pipe_open($pipe, 1);
//uv_pipe_bind($pipe,"/tmp/hoge.sock");
uv_write($pipe, "Hello",function($b,$s){
2012-06-02 14:45:43 +02:00
echo 1;
uv_close($b);
});
uv_run();