这是我的 Python 代码:
import threading
import time
import MySQLdb
import sys
conn=MySQLdb.connect (host = "localhost",
user = "root",
passwd = "",
db = "profiles_sheduleit")
cur = conn.cursor()
def activation():
while True:
time.sleep(1)
print time.time()
t = threading.Thread(name='activation', target=activation)
t.start()
我通过以下方式从我的 php 页面调用此页面:
$result = exec("c:/python27/python f:/python/hello.py");
当单击此按钮时,我在 php 中有几个按钮,我应该创建一个新线程并且该线程应该运行 10 秒。
但是当我单击按钮时 m 无法单击另一个按钮,因为 python 脚本进入睡眠模式thanx