Heroku上的PHP exec()无效

时间:2017-10-20 13:39:54

标签: php python heroku

我在heroku上有一个调用python脚本的应用程序,在localhost上运行正常,但是当我推送到heroku的服务器时,exec无法正常工作。我只使用一个简单的代码进行测试。

PHP

$result = exec("python testscript.py");

Python

def get_test():
    return 2
if __name__ == "__main__":
    print get_test()

编辑:即时通讯使用多个Buildpacks,我的应用程序配置为使用php和python

0 个答案:

没有答案