如何从 PHP 内调用 Python 文件?
要从 PHP 文件中调用 Python 文件,需要使用 shell_exec 函数进行调用。
例如
<?php $command = escapeshellcmd('/usr/custom/test.py'); $output = shell_exec($command); echo $output; ?>
这将调用脚本。但您需要在脚本顶部指定解释器。因此在您的 python 文件中,在顶部添加以下行
#!/usr/bin/env python
或者您也可以在执行命令时提供解释器。
例如
<?php $command = escapeshellcmd('python3 /usr/custom/test.py'); $output = shell_exec($command); echo $output; ?>
广告