php中set_time_limit和memory_limit作用小测试...
时间:2010-08-17 来源:topasstem8
set_time_limit测试代码如下:
set_time_limit(1); for ($index = 0; $index < 100000000000; $index++) { print $index."<br />"; }
测试结果:
486206
486207
486208
Fatal error: Maximum execution time of 1 second exceeded in E:\Server\localhost\test\1.php on line 4
说明循环到 486209 的时候,脚本已经运行超过1秒,所以提示超时
友情提示:千万不要在设置的秒数限制较多的情况下运行这个脚本!
memory_limit测试代码如下:
ini_set("memory_limit","1M"); $fp = file("1.sql");
1.sql是大小是2M,错误提示如下:
Fatal error: Allowed memory size of 1048576 bytes exhausted (tried to allocate 2047672 bytes)
相关阅读 更多 +