mod_python 相当于 php exec() 命令

发布于 2024-10-20 02:10:48 字数 268 浏览 4 评论 0原文

mod_python 相当于 php exec 命令是什么?

$cmd = '/var/www/scripts/test.py' + $parameter
$return = exec($cmd)

我已经尝试过,但它没有返回任何内容

varReturn= subprocess.check_output(['/var/www/scripts/resolveID.py ', varParameters)

what is the mod_python equivalent to the php exec command?

$cmd = '/var/www/scripts/test.py' + $parameter
$return = exec($cmd)

I've tried this but it doesn't return anything

varReturn= subprocess.check_output(['/var/www/scripts/resolveID.py ', varParameters)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

还如梦归 2024-10-27 02:10:48

捕获子进程的 stdout 和 stderr:

from subprocess import Popen, PIPE

proc = Popen(['/var/www/scripts/resolveId.py', 'arg1', 'arg2'], stdout=PIPE, stderr=PIPE)
stdout, stderr = proc.communicate()

Capture the stdout and stderr of the subprocess:

from subprocess import Popen, PIPE

proc = Popen(['/var/www/scripts/resolveId.py', 'arg1', 'arg2'], stdout=PIPE, stderr=PIPE)
stdout, stderr = proc.communicate()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文