php异常

1.php 出现 Fatal error: Maximum execution time of 30 seconds exceeded in 的

解决办法:

修改php.ini:
max_execution_time = 300 时间,然后重起服务
或者在程序写
set_time_limit(时间); //0为无限制

你可能感兴趣的:(PHP,异常,执行时间30秒)