将值从PHP脚本传递到python脚本

时间:2018-06-06 07:23:27

标签: php python

我正在尝试从PHP执行python脚本。

<?php
$asd = "Mashwani";
$command = "test.py  $asd";
$output = passthru($command);
?>

在python中:

import sys
print(sys.argv)

这显示了我的第一个论点,即[&#39; C:\ xampp \ htdocs \ test.py&#39;] 但是没有显示出第二个问题。 我也尝试过exec(),shell_exec()而不是passthru()

0 个答案:

没有答案