Heim  >  Artikel  >  Backend-Entwicklung  >  Python flask开发中 调用 PHP脚本

Python flask开发中 调用 PHP脚本

WBOY
WBOYOriginal
2016-06-06 20:31:422134Durchsuche

如题,如何在Python 中 调用 php 脚本。已经尝试 os.system 和 subprocess.call 都执行失败。
对应语句如下

subprocess.call('/usr/bin/php /root/addpass.php ' + ftp + ' ' + ftppass)

也没什么报错信息,但是根据程序逻辑可以判断这部分执行时失败的。

回复内容:

如题,如何在Python 中 调用 php 脚本。已经尝试 os.system 和 subprocess.call 都执行失败。
对应语句如下

subprocess.call('/usr/bin/php /root/addpass.php ' + ftp + ' ' + ftppass)

也没什么报错信息,但是根据程序逻辑可以判断这部分执行时失败的。

正解如下:

<code>subprocess.call('/usr/bin/php /root/addpass.php ' + ftp + ' ' + ftppass,shell=True)
</code>

直接在控制台中执行php /root/addpass.php ftp ftppass 还能执行成功?
另外根据执行的内容,这样做未必是正确的做法。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn