如何使用 php 调用 python 实例?
我有一个 PHP 程序和一个 Python 程序。你可以认为Python程序就像一个机器人或机器。通常,它会使用数据库,进行一些分析并为您返回结果。它是一个纯文本控制台应用程序。
我想让用户通过网络界面使用该程序。所以,我想使用 PHP,接受用户输入,并将其传递给 Python 程序,然后返回给用户。
我怎样才能实现它? Python程序始终运行在服务器上,这会保留来自网络和用户输入的分析数据,因此它不能轻易地转换为服务器端的脚本。
有什么想法吗?
I have a PHP program, and a Python program. You can think that the Python program is like a robot or machine. Typically, it will use a database, do some analysis and return result for you. It is a plain text console application.
I would like to let the user use the program via a web interface. So, I would like to use PHP, accept user input, and the pass it to the Python program, and back to the user.
How can I achieve it? The Python program is always running on the server, which will keep analysis data from the web and the user input, so it can't easily convert to become a script on server side.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想检查 exec 函数。您可以将用户的输入作为参数传递给 python 脚本并从中获取输出。
You might want to check exec function. You can pass the input from user as parameters to the python script and get back the output from it.
看看 http://www.csh.rit.edu/~jon/项目/pip/
Take a look into http://www.csh.rit.edu/~jon/projects/pip/