Home  >  Article  >  Backend Development  >  Set timeout in php

Set timeout in php

WBOY
WBOYOriginal
2023-05-06 11:26:072995browse

With the upgrade of Internet application scenarios, the performance and reliability requirements of Web applications are getting higher and higher. During the process of initiating an HTTP request, you will inevitably encounter problems such as network bottlenecks, heavy server load, slow response of third-party interfaces, etc., resulting in long request times. Once the request time is too long, it will cause the front-end page to freeze, degrade the user experience, and more seriously, it may lead to the exhaustion of server resources. For this reason, setting a timeout is very important.

This article will introduce how to set the timeout in PHP.

The role of timeout time

The timeout time refers to the maximum time to wait for the server to process and respond after sending an HTTP request. Once this time is exceeded, the request will be forcibly aborted and an error message will be returned.

The timeout setting has two meanings: On the one hand, from the perspective of the Web server, it protects server resources by limiting the processing time to avoid the bridge effect caused by too many requests, which reduces the availability of the entire service. On the other hand, from the user's perspective, the timeout is also to avoid the degradation of user experience due to long request waiting times. When the request exceeds a certain time, users will begin to wonder if something abnormal has occurred, and may even interrupt the operation.

Timeout timing

The timeout time can be set in PHP, which can be defined in different places. Generally speaking, the timing of timeout mainly includes the following types:

Connection timeout

Connection timeout refers to the time to wait when establishing an HTTP connection. In PHP, you can use the fsockopen() or curl library to establish an HTTP connection. When using fsockopen() to connect to the HTTP server, you can set the socket connection timeout:

$fp = fsockopen("www.example.com", 80, $errno, $errstr, 5);
if (!$fp) {
   echo "连接服务器失败: $errstr ($errno)";
} else {
   //请求处理
   fclose($fp);
}

When using the curl library to connect to the HTTP server, you can set the timeout. If Failure to connect to the target server within the specified competition time will trigger a connection timeout error:

$curl = curl_init();
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 5); //设置连接超时时间
curl_setopt($curl, CURLOPT_TIMEOUT, 5); //设置超时时间
curl_setopt($curl, CURLOPT_URL, 'http://www.example.com');
curl_exec($curl);
curl_close($curl);

Data transmission timeout

Data transmission timeout refers to the time to wait for the server to respond after a successful connection. Similarly, you can use the curl library to set the timeout, wait for the server response within the specified time, and throw an error if it times out:

$curl = curl_init();
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 5); //设置连接超时时间
curl_setopt($curl, CURLOPT_TIMEOUT, 5); //设置数据传输超时时间
curl_setopt($curl, CURLOPT_URL, 'http://www.example.com');
curl_exec($curl);
curl_close($curl);

Script execution timeout

When PHP When the interpreter executes a program, if the execution time times out, a script execution timeout error will be thrown. By default, PHP will wait 30 seconds before interrupting script execution. You can change the timeout through the set_time_limit() method:

set_time_limit(10); //设置脚本最大执行时间为10秒钟

When you need to process a large amount of data or the execution is very time-consuming When running tasks, you may need to use this method to set timeouts.

Summary

It is very important to set the timeout in PHP to avoid problems such as resource exhaustion and user experience degradation caused by long waiting times for requests. PHP provides a wealth of functions and libraries to implement timeout settings, which can limit the timeout during connection establishment, data transmission, and script execution. When setting the timeout period, you need to choose the appropriate timing and value according to the specific situation to ensure server availability and user experience.

The above is the detailed content of Set timeout in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn