我在 MacOS 10.7.4 上使用 Python 2.7。这是一个较长的脚本(不是我写的)的一部分,它本质上为 PHP 提供了一些配置选项,将它们写入 PHP 的标准输入,然后从标准输出中读取它们。
在实践中,我似乎根本无法从标准输出中读取。下面的脚本应该写“hello world”,但它写的只是一个空行。
谁能建议出了什么问题?我不太熟悉 Python 或 PHP 的工作方式stdin
和stdout
工作方式,所以我正在努力调试它。
php_path = '/usr/bin/php'
args = [php_path]
child = subprocess.Popen(args,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
universal_newlines=True)
# Write to PHP stdin
print >>child.stdin, """
<?php
print "hello world\n";
# In reality we'd write some configuration options here,
# but in practice we can't even write 'hello world'.
}
?>"""
child.stdin.close()
# Read from PHP stdout
line = True
while line:
print 'line', line
line = child.stdout.readline()
print 'line from stdout', line
if line == "hello world\n":
break
else:
raise Exception, "%s: failed to read options" % (php_path)
输出是:
line True
line from stdout
line
line from stdout Parse error: parse error in - on line 5
line Parse error: parse error in - on line 5
line from stdout
Traceback (most recent call last):
File "test.py", line 25, in <module>
raise Exception, "%s: failed to read options" % (php_path)
Exception: /usr/bin/php: failed to read options
肯定有一个 PHP 在/usr/bin/php
.