如何使用 php 调用 python 实例?

发布于 2024-12-24 16:09:41 字数 257 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半枫 2024-12-31 16:09:41

您可能想检查 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文