我有一个 Python 服务器终于可以工作并使用输出响应多个命令,但是我现在遇到了 PHP 接收完整输出的问题。我尝试过 fgets、fread 等命令,似乎唯一有效的命令是“fgets”。
然而,这仅接收在线数据,然后我创建了如下所示的 while 语句:
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
echo $buffer;
}
但是,Python 服务器似乎没有在输出末尾发送 Feof,因此 php 页面超时并且不显示任何内容。就像我上面说的,只运行 echo fgets($handle),工作正常,输出一行,再次运行命令都不会显示下一行等
我在下面附上了我的 Python 脚本的重要部分:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(("", port))
s.listen(5)
print "OK."
print " Listening on port:", port
import subprocess
while 1:
con, addr = s.accept()
while True:
datagram = con.recv(1024)
if not datagram:
break
print "Rx Cmd:", datagram
print "Launch:", datagram
process = subprocess.Popen(datagram+" &", shell=True, stdout=subprocess.PIPE)
stdout, stderr = process.communicate()
con.send(stdout)
con.close()
s.close()
我还附上了完整的 PHP 脚本:
<?php
$handle = fsockopen("tcp://xxx.xxx.xxx.xxx",12345);
fwrite($handle,"ls");
echo fgets($handle);
fclose($handle);
?>
谢谢,阿什利