打印PHP变量时出现Python错误 - 使用sys

时间:2015-04-20 22:03:29

标签: php python variables sys

我一直试图解决这个问题几个小时,但都没有成功。我搜索过类似的问题,但他们没有帮助!

PHP文件 - 用Notepad ++编写:

<?php
$item='example';
$tmp = shell_exec("C:\Python34\python.exe TestingStuff.py .$item");
echo $tmp;
?>

在浏览器中运行此文件(使用Apache)时,我输出以下内容:

['TestingStuff.py', '.example'] .example

Python文件 - 用IDLE编写:

#!c:\python34\python.exe

import sys 
print(sys.argv[1])

运行此命令时收到以下错误:

IndexError: list index out of range

运行print(sys.argv)时输出为['C:/xampp/htdocs/TestingStuff.py']

0 个答案:

没有答案