确定 PHP 是从 shell 运行还是在 apache 中运行的方法?
确定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可能会发现这很有用: http://php.net/manual/en /function.php-sapi-name.php
you might find this useful: http://php.net/manual/en/function.php-sapi-name.php
http://sandbox.phpcode.eu/g/5f9d5
http://sandbox.phpcode.eu/g/5f9d5
如果您需要了解所使用的确切 SAPI,请参阅 marcelog 的回答。
如果您只需要知道是否有可用的 HTTP 环境,则可以简单地测试
$_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']
: