📜  PHP 时间限制 (max_execution_time): - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:52.983000             🧑  作者: Mango

代码示例3
1- Increasing PHP Time Limit via PHP.ini file

    max_execution_time = 300;

2- Alternative to editing PHP.ini through wp-config.php
  
      set_time_limit(300);

3- Modifying the .htaccess file
  
      max_execution 300