什么设置正在停止 Curl 和 file_get_contents?

问题描述 投票:0回答:1

出于某种原因,在 Curl 和 file_get_contents 上,我只允许下载

612525
字节。我查看了
echo phpinfo();
的输出,但没有看到任何明显的东西。什么设置会限制这个?

将文件下载到我的数据库后,输出如下(65.5kb):

enter image description here

php file-get-contents php-curl
1个回答
0
投票

尝试检查 INI 中的以下设置:

memory_limit = 256M
post_max_size = 128M
upload_max_filesize = 128M
default_socket_timeout = 60
max_execution_time = 300

其中每一个都可能会导致下载字节数受到限制。

© www.soinside.com 2019 - 2024. All rights reserved.