Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经编写了一个 python 脚本 (mail.py) 来在 python 中发送电子邮件,并且我已经编写了另一个文件来提交操作。我需要该文件mail.py应该在后台运行。当我编写以下代码时
mail.py
$result=shell_exec('python mail.py&'); echo $result;
然后没有响应但是当我运行文件时python mail.py &它运行成功
python mail.py &
您必须设置 python 解释器的完整路径,例如:
shell_exec('/usr/bin/python mail.py &');