请问在iis服务器下,php中的set_time_limit(0)为什么没有作用?
回复讨论(解决方案)
怎么个不起作用 体现在哪?
set_time_limit(0);
$time_start = time(true);
$chk = false;
while ($chk === false) {
$time_end = time(true);
if ($time_end - $time_start > 80) {
printf("time out!");
$chk = true;
}
}
这段代码没有打出time out。而且报500的错误。
表示没得iis下用过php。。。
500错误是不是php.ini中display_errors = On没设置,还有就是while循环 $time_end - $time_start应该一直等于0吧
我在apache环境下测试是成功的 不知道是不是跟服务有关
500错误是不是php.ini中display_errors = On没设置,还有就是while循环 $time_end - $time_start应该一直等于0吧
为什么$time_end - $time_start应该一直等于0?
我在apache环境下测试是成功的 不知道是不是跟服务有关
在iis中应该怎么设置呢?
我把80改小一点就可以。
超过了最大执行时间? 打开错误提示功能看看。
哦,加了set_time_limit(0); 那跟最大执行时间没关系。
打开错误提示功能看是否有报错。
几个原因排查一下:
1. php是否运行在安全模式下,如果是的话,set_time_limit是无效的。
2. IIS服务器本身配置了超时,且优先级更高,即使你 php设置了不超时,由于服务器的超时机制,还是会做超时处理,因此在超时后会触发致命错误,这就是导致500错误的原因。
参考一下这篇文章:http://www.iisadmin.co.uk/?p=7
哦,加了set_time_limit(0); 那跟最大执行时间没关系。
打开错误提示功能看是否有报错。
我把错误提示功能打开,在log中没有发现有错误提示。
问题解决了,果然是iis7的问题:
IIS7->FastCGI设置->双击"php-cgi.exe"->"活动超时" 项默认是设置为70,我改为最大值,2592000.

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

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