无法在PHP中获取Python脚本的结果

时间:2016-09-02 11:06:19

标签: php python

我正在使用Xampp和Ubuntu 16.04 ..

现在对于我的项目我需要python和php集成来从PHP调用python脚本。实际上描述我的脚本......我正在使用pypi报纸库从新闻门户网站中提取新闻摘要

#!/usr/bin/env python
from newspaper import Article
url='http://www.abplive.in/india-news/countering-terrorism-an-important-shared-objective-by-india-united-states-manohar-parrikar-407134'
article=Article(url)
article.download()
article.parse()
article.nlp()
print article.summary

所以只需用php中的代码帮我调用python脚本

1 个答案:

答案 0 :(得分:0)

其中一个passthru()exec()命令应该可以解决问题。有关详细信息,请参阅http://php.net/manual/en/function.passthru.php。类似的东西:

<?php
    $full_path = `<full_path_to_python_script>`;
    passthru($full_path);
?>