PHP 最大运行时间 max_execution_time修改方法

Netany ·
更新时间:2024-11-10
· 536 次阅读

如下:
---------------------------------------------------------------------------------------
//修改最大执行时间
ini_set("max_execution_time", 2400); // s 40 分钟
//修改此次的最大运行内存
ini_set("memory_limit", 1048576000); // Byte 1000 兆,即 1G
---------------------------------------------------------------------------------------
修改的参数只在本次运行脚本的时候生效! 您可能感兴趣的文章:php中使用exec,system等函数调用系统命令的方法(不建议使用,可导致安全问题)PHP 命令行工具 shell_exec, exec, passthru, system详细使用介绍PHP 执行系统外部命令 system() exec() passthru()php在服务器执行exec命令失败的解决方法php max_execution_time执行时间问题PHP下通过exec获得计算机的唯一标识[CPU,网卡 MAC地址]php模拟ping命令(php exec函数的使用方法)



max time 运行 方法 PHP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号