gpt4 book ai didi

php - 默认套接字超时 [XAMPP HTTPS]

转载 作者:行者123 更新时间:2023-12-03 12:05:12 26 4
gpt4 key购买 nike

我正在使用 xampp(php 版本 5.25)并使用 https。我正在使用 rest api 执行一些脚本,执行时间超过 60 秒,但我不断收到此错误
“ fatal error :超过 60 秒的最大执行时间”

我尝试在脚本中设置默认套接字超时,但没有成功。

 ini_set("default_socket_timeout", 120);

我也没有评论
LoadModule rewrite_module modules/mod_rewrite.so //http.conf apache file

并创建了 .htaccess
php_value default_socket_timeout 9000

但是,错误消息仍然显示超过 60 秒的最大执行时间。
我还从 phpinfo() 检查了“default_socket_timeout”的主值和本地值,他们说是 60。
有什么解决办法吗?

最佳答案

将它放在 PHP 脚本的顶部。

ini_set('max_execution_time', 300); //300 seconds = 5 minutes

如果您有几个 php 文件需要超过默认的 30 秒,您可能希望通过 php.ini 文件通过编辑此行来全局更改它:
; 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

关于php - 默认套接字超时 [XAMPP HTTPS],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25566840/

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