确定 PHP 是从 shell 运行还是在 apache 中运行的方法?

发布于 2024-12-02 14:41:12 字数 403 浏览 0 评论 0原文

可能的重复:
如何区分http和cli请求?
哪种方法检测php的运行模式脚本更可靠吗?

确定 php 是从 shell(cron 或其他)运行还是在 apache 下运行的最佳方法是什么?

Possible Duplicate:
How to differentiate between http and cli requests?
Which method to detect run mode of php script is more reliable?

What's the best method to determine if php is running from a shell (cron or otherwise) or running under apache?

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

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

发布评论

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

评论(3

云之铃。 2024-12-09 14:41:12
echo php_sapi_name()==="apache2handler"; //running under apache?

http://sandbox.phpcode.eu/g/5f9d5

echo php_sapi_name()==="apache2handler"; //running under apache?

http://sandbox.phpcode.eu/g/5f9d5

沉溺在你眼里的海 2024-12-09 14:41:12

如果您需要了解所使用的确切 SAPI,请参阅 marcelog 的回答。

如果您只需要知道是否有可用的 HTTP 环境,则可以简单地测试 $_SERVER['HTTP_HOST']

$is_web = isset($_SERVER['HTTP_HOST']);

See marcelog's answer if you need to know the exact SAPI being used.

If all you need to know is whether you have an HTTP environment available, you can simply test for $_SERVER['HTTP_HOST']:

$is_web = isset($_SERVER['HTTP_HOST']);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文