将python的输出发送到PHP网页[重复]

Posted

技术标签:

【中文标题】将python的输出发送到PHP网页[重复]【英文标题】:Sending output of python to PHP webpage [duplicate] 【发布时间】:2021-08-18 03:25:26 【问题描述】:

下面是我的 Python 代码。我的讲师要求我可以将 fanspeed.output['fan'] 发送到 php。例如,我在 xampp 上创建了一个网页,然后我需要将 python 的输出发送到网页,该网页将在网页上显示输出。我在网上搜索,我找不到解决它的工作方法。有人可以帮忙吗?

temp = int(input("temp="))
hum = int(input("hum="))
fanspeed.input['temperature'] = temp
fanspeed.input['humidify'] = hum
fanspeed.compute()
fanspeed.output['fan']
fan.view(sim=fanspeed)
print("Fan speed =",fanspeed.output['fan'])

【问题讨论】:

这很有趣,我在谷歌上搜索了你的问题标题,得到了 1080 万次点击;来自这个网站的 38000 个... 【参考方案1】:

最简单的方法是通过shell_exec调用python脚本。

类似的东西

<?php
echo shell_exec("python /path/to/your/python/script.py");

【讨论】:

以上是关于将python的输出发送到PHP网页[重复]的主要内容,如果未能解决你的问题,请参考以下文章

将PHP变量发送到javascript函数[重复]

将 JavaScript 变量发送到 PHP 变量 [重复]

如何使用 POST 将字符串发送到 php [重复]

通过 Fetch API 将复杂的表单数据发送到 PHP 端点 [重复]

如何使用ajax将从jquery for循环创建的输入值发送到php [重复]

使用 AJAX + jQuery + PHP 将数据发送到 MySQL