在php中调用特定的python脚本不起作用

时间:2019-05-28 19:43:06

标签: php python

因此,我正在一个项目中尝试使用网页打开/关闭房间的灯。我创建了这个python脚本,该脚本读取文件以获取灯光的状态(开启或关闭),然后将``相反''的内容写回到文件中(这基本上将切换灯光)。 php

system("python script.py")

它没有输出任何内容到页面,而不是预期的状态(打开或关闭)

f = open("lightState.txt", "r")
var = f.read(2)
f.close()


f = open("lightState.txt", "w")

state = ""


if(var == "of"):
    #turn light on
    state ="on"

if(var == "on"):
    #turn light off
    state = "of"

print(state)
f.write(state)
f.close()

我也在同一文件夹中的另一个python脚本中尝试了这一点,效果很好。

任何帮助都很重要

-SmRndmGy

0 个答案:

没有答案