gpt4 book ai didi

php - 最大执行时间超过 60 秒错误

转载 作者:IT王子 更新时间:2023-10-29 00:07:34 26 4
gpt4 key购买 nike

我收到以下错误消息:

Warning: file_get_contents(http://localhost/sample_pie.php) [function.file-get-contents]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\xampp\htdocs\EXACT\report.php on line 206

Fatal error: Maximum execution time of 60 seconds exceeded in C:\xampp\htdocs\EXACT\report.php on line 206

这是第 206 行:

$url = 'http://localhost/sample_pie.php';
$img = 'C:\xampp\htdocs\piechart.jpg';
file_put_contents($img, file_get_contents($url));

我该怎么做才能解决这个问题?

最佳答案

您的脚本执行超过 60 秒后被终止。 php.ini 中有一个值定义了 PHP 脚本可以运行的最长时间。这样做的目的是防止脚本挂起。您可以尝试优化您的脚本,但如果它打算运行很长时间,您可以只更新该值(它称为 max_execution_time)。

您还可以尝试通过运行 set_time_limit() 函数为特定脚本更改此值,docs here

关于php - 最大执行时间超过 60 秒错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1420249/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com