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.
我有一个带有 set_time_limit(0) 指令的大型脚本,以确保它完全处理。
但是,在一小部分安装中,我收到了一些关于此错误的报告:
警告:set_time_limit() [function.set-time-limit]:无法在安全模式下设置时间限制...
在提交函数之前是否有方法调用来检查安全模式?
就在这里
ini_get('safe_mode')
是否开启 PHP 的安全模式。如果 PHP 使用 --enable-safe-mode 编译,则默认为 On,否则为 Off。 来源
是否开启 PHP 的安全模式。如果 PHP 使用 --enable-safe-mode 编译,则默认为 On,否则为 Off。
来源
ini_get()