如何从 PHP 文件内调用 Python 文件?


要在 PHP 文件内调用 Python 文件,您需要使用 shell_exec 函数对其进行调用。

例如

<?php
    $command = escapeshellcmd('/usr/custom/test.py');
    $output = shell_exec($command);
    echo $output;
?>

这将调用脚本。但在您脚本的顶部,还需要指定解释器。因此,在您的 py 文件中,在顶部添加以下行

#!/usr/bin/env python

或者,您也可以在执行命令时提供解释器。

例如

<?php
    $command = escapeshellcmd('python3 /usr/custom/test.py');
    $output = shell_exec($command);
    echo $output;
?>

更新于: 2019 年 12 月 13 日

10K+ 查看

开启您的 职业生涯

完成课程,获得认证

开始
广告