As our business develops and the number of website visits increases, we often need to execute PHP scripts that take a long time. However, PHP's default timeout is only 30 seconds, which is far from meeting business needs. In order to solve this problem, we need to modify the timeout period of PHP.
Here are some ways to change the PHP timeout:
Modify php.ini
This is the most common way, by modifying the max_execution_time parameter in the php.ini file , you can change PHP's timeout. Find the following content in the php.ini file:
; Maximum execution time of each script, in seconds ; http://php.net/max-execution-time ; Note: This directive is hardcoded to 0 for the CLI SAPI max_execution_time = 30
Change the max_execution_time parameter to a value greater than 30 seconds.
It is worth mentioning that if modifying the php.ini file does not work, you need to check which php.ini file is currently used by PHP. This can be viewed in PHP code using the phpinfo() function.
Use set_time_limit() in code
The set_time_limit() function is a built-in function in PHP that can be used to change the maximum time for script execution. For example, add the following code at the beginning of the code:
set_time_limit(600);
The maximum execution time of the PHP script will be set to 600 seconds, which is 10 minutes.
It is worth mentioning that if the parameter is passed in 0, it means that the execution time limit is cancelled, and the script can continue to execute.
Set in Apache
If PHP runs as an Apache module, you can change the PHP timeout by modifying php_value in the .htaccess file.
Add the following code in the .htaccess file:
php_value max_execution_time 600
At this time, the maximum execution time of PHP will be set to 600 seconds, which is 10 minutes.
Set in Nginx or FastCGI
If you are using Nginx or FastCGI, you can add the following code in the configuration file:
fastcgi_read_timeout 600;
At this time, the maximum execution of PHP The time will be set to 600 seconds, which is 10 minutes.
Set in PHP-FPM
If you are using PHP-FPM, you can set the PHP timeout by modifying the php-fpm.conf or www.conf file. Take the php-fpm.conf file as an example here:
Find the following content:
; Process timeouts in seconds. Negative values disable timeouts. ; Default Value: ; process.timeout = 0s process.timeout = 30s
Change the process.timeout parameter to a value greater than 30 seconds.
Summary
The above is the method to change the PHP timeout. According to different environments and uses, choose different methods to modify the PHP timeout. In addition, we also need to pay attention to adjusting parameters such as PHP memory limit (memory_limit) and Apache or Nginx server request response time to improve the performance and stability of the website.
The above is the detailed content of How to change the timeout in php. For more information, please follow other related articles on the PHP Chinese website!

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
