Remove a PHP < 7.1 branch in UrlHelper.

This commit is contained in:
wn_ 2022-08-12 14:16:40 +00:00
parent 93fd85df6f
commit 7567676ed8
1 changed files with 18 additions and 24 deletions

View File

@ -190,33 +190,27 @@ class UrlHelper {
if ($nest > 10) if ($nest > 10)
return false; return false;
if (version_compare(PHP_VERSION, '7.1.0', '>=')) { $context_options = array(
$context_options = array( 'http' => array(
'http' => array( 'header' => array(
'header' => array( 'Connection: close'
'Connection: close' ),
), 'method' => 'HEAD',
'method' => 'HEAD', 'timeout' => $timeout,
'timeout' => $timeout, 'protocol_version'=> 1.1)
'protocol_version'=> 1.1) );
);
if (Config::get(Config::HTTP_PROXY)) { if (Config::get(Config::HTTP_PROXY)) {
$context_options['http']['request_fulluri'] = true; $context_options['http']['request_fulluri'] = true;
$context_options['http']['proxy'] = Config::get(Config::HTTP_PROXY); $context_options['http']['proxy'] = Config::get(Config::HTTP_PROXY);
}
$context = stream_context_create($context_options);
// PHP 8 changed the second param from int to bool, but we still support PHP >= 7.1.0
// @phpstan-ignore-next-line
$headers = get_headers($url, 0, $context);
} else {
// PHP 8 changed the second param from int to bool, but we still support PHP >= 7.1.0
// @phpstan-ignore-next-line
$headers = get_headers($url, 0);
} }
$context = stream_context_create($context_options);
// PHP 8 changed the second param from int to bool, but we still support PHP >= 7.4.0
// @phpstan-ignore-next-line
$headers = get_headers($url, 0, $context);
if (is_array($headers)) { if (is_array($headers)) {
$headers = array_reverse($headers); // last one is the correct one $headers = array_reverse($headers); // last one is the correct one