Home
last modified time | relevance | path

Searched refs:stdio (Results 1 – 4 of 4) sorted by relevance

/php-uv/examples/
H A Dspawn_fd.php7 $stdio = array(); variable
8 $stdio[] = uv_stdio_new($in, UV::CREATE_PIPE | UV::READABLE_PIPE);
11 $stdio[] = uv_stdio_new($fp, UV::INHERIT_FD | UV::WRITABLE_PIPE);
14 uv_spawn(uv_default_loop(), "php", ['-r', 'var_dump($_ENV);'], $stdio, "/usr/bin/",
H A Dspawn.php8 $stdio = array(); variable
9 $stdio[] = uv_stdio_new($in, UV::CREATE_PIPE | UV::READABLE_PIPE);
10 $stdio[] = uv_stdio_new($out, UV::CREATE_PIPE | UV::WRITABLE_PIPE);
13 uv_spawn(uv_default_loop(), "php", array('-r','var_dump($_ENV);'), $stdio, "/usr/bin/",
/php-uv/
H A Dphp_uv.c2623 *table = &stdio->stream;
2677 stdio->flags = 0;
2680 return &stdio->std;
3133 ZEND_ARG_INFO(0, stdio)
4851 php_uv_stdio_t *stdio; local
4917 stdio->flags = flags;
4918 stdio->fd = fd;
5242 options.stdio = stdio;
5247 options.stdio = stdio;
5279 if (stdio != NULL) {
[all …]
H A DREADME.md1685 ### resource uv_spawn(resource $loop, string $command, array $args, array $stdio, string $cwd, arra…

Completed in 39 milliseconds