Home > Backend Development > PHP Tutorial > Python flask开发中 调用 PHP脚本

Python flask开发中 调用 PHP脚本

WBOY
Release: 2016-06-06 20:31:42
Original
2166 people have browsed it

如题,如何在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>
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template