我看过与这个相似的其他问题,但是还是不能弄清楚.
?PHP $item='example'; $tmp = exec("python testscriptPHP.py .$item"); echo $tmp; ?
虽然成功地调用我在我的webhostserver上运行的python.现在在我的python脚本我想要这样的东西:
item=$item print item
基本上我在问如何将变量从PHP传递给python脚本,然后如果需要,返回到PHP.
谢谢!
虽然netcoder在他的评论中给了你很多答案,下面是一个例子:
Python-> PHP
example.py
import os os.system("/usr/bin/PHP example2.PHP whatastorymark")
example2.PHP
<?PHP echo $argv[1]; ?>
PHP的> Python的
<?PHP $item='example'; $tmp = exec("python testscriptPHP.py .$item"); echo $tmp; ?>
testscriptPHP.py
import sys print sys.argv[1]
PHP的命令行参数传递的工作原理如下:http://php.net/manual/en/reserved.variables.argv.php
Python也是如此:http://docs.python.org/library/sys.html#sys.argv