发布于 2024-01-03 23:33:15 浏览 186
max_execution_time = 300
memory_limit = 256M
$context = stream_context_create(array(
'http' => array(
'timeout' => 300,
'header' => 'Content-Type: application/x-www-form-urlencoded\r\n'
)
));
$url = 'http://example.com/long/url';
$content = file_get_contents($url, false, $context);
如果你要读取非常长的 URL 内容,可能会导致 PHP 脚本的执行时间过长或者占用过多的内存资源。因此,在增加限制之前,请确保你的服务器环境具备足够的资源来处理这种情况。
上一篇:php怎么获得当前url 下一篇:http_build_query解析数组%5B0%5D代表什么PHP基础 发布于 2024-01-04 00:10:11 浏览 334
PHP基础 发布于 2024-01-04 00:06:07 浏览 344
PHP基础 发布于 2024-01-04 00:05:20 浏览 338
PHP基础 发布于 2024-01-04 00:04:17 浏览 344
PHP基础 发布于 2024-01-04 00:03:22 浏览 347
PHP基础 发布于 2024-01-03 23:59:22 浏览 339
PHP基础 发布于 2024-01-03 23:58:03 浏览 334
PHP基础 发布于 2024-01-03 23:54:57 浏览 343
PHP基础 发布于 2024-01-03 23:53:38 浏览 336