如何运行要求在php中输入内容的python脚本

时间:2019-02-14 13:59:23

标签: php python

我想要一种将输入从PHP传递到python脚本的方法。 我正在使用以下命令,但似乎找不到一种将值传递给脚本的方法

$command = escapeshellcmd('/usr/custom/test.py');
$output = shell_exec($command);

1 个答案:

答案 0 :(得分:1)

例如,您有一个简单的输入,例如:

<input type="text" name="name"><br>

要传递它,您可以像这样:

<?php system("python mycode.py ".$_POST["name"]); ?>

您还可以使用exec()passthru()

system("python mycode.py <arg1> <arg2>");

//or

exec("python mycode.py <arg1> <arg2>");

//or

passthru("python mycode.py <arg1> <arg2>");

玩得开心!