警告:set_time_limit() [function.set-time-limit]:无法在安全模式下设置时间限制

发布于 2024-12-07 11:39:33 字数 186 浏览 0 评论 0原文

我有一个大型脚本,其中包含 set_time_limit(0) 指令以确保其完全处理。

但是,我在一小部分安装中收到了有关此错误的一些报告:

警告:set_time_limit()[function.set-time-limit]:无法在安全模式下设置时间限制...

是否有方法调用在提交函数之前检查安全模式?

I have a large script that has a set_time_limit(0) directive to insure it processes fully.

However, I'm getting a few reports of this error on a small percentage of installations:

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit in safe mode...

Is there a method call to check for safe mode before committing the function?

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

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

发布评论

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

评论(1

在你怀里撒娇 2024-12-14 11:39:33

在提交函数之前是否有方法调用来检查安全模式?

是的,有

ini_get('safe_mode')

是否启用PHP的安全模式。如果 PHP 是使用 --enable-safe-mode 编译的,则默认为 On,否则为 Off。

来源

Is there a method call to check for safe mode before committing the function?

Yes, there is

ini_get('safe_mode')

Whether to enable PHP's safe mode. If PHP is compiled with --enable-safe-mode then defaults to On, otherwise Off.

Source

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