You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
15
vendor/swoole/examples/process/python.php
vendored
Executable file
15
vendor/swoole/examples/process/python.php
vendored
Executable file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
$process = new swoole_process('pyhon_process', true);
|
||||
$pid = $process->start();
|
||||
|
||||
function pyhon_process(swoole_process $worker)
|
||||
{
|
||||
$worker->exec('/usr/bin/python', array("echo.py"));
|
||||
}
|
||||
|
||||
$process->write("hello world\n");
|
||||
echo $process->read();
|
||||
|
||||
$ret = swoole_process::wait();
|
||||
var_dump($ret);
|
||||
|
Reference in New Issue
Block a user