我正在尝试从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()