Rumah >pembangunan bahagian belakang >tutorial php > 怎么在php中执行python script
怎样在php中执行python script?
想通过php ssh到远程服务器,然后执行服务器上的一个python文件,获得结果,然后从php中打印出来。
我的代码如下:
$connection = ssh2_connect('remote-server',22);<br /> ssh2_auth_password($connection, 'root','pwd');<br /> <br /> $string = ssh2_exec($connection, 'python pythonfile.py; sleep 20');<br /> stream_set_blocking($string,true);<br /> echo stream_get_contents($string);