PHP get_headers() alternative(PHP get_headers() 替代)
问题描述
我需要一个 PHP 脚本来读取每个 URL 请求的 HTTP 响应代码.
I need a PHP script that reads the HTTP response code for each URL request.
类似
$headers = get_headers($theURL);
return substr($headers[0], 9, 3);
问题是 get_headers() 函数在服务器级别被禁用,作为一项策略.所以它不起作用.
The problem is the get_headers() function is disabled at server level, as a policy.So it doesn't work.
问题是如何获取 URL 的 HTTP 响应代码?
The question is how to get the HTTP response code for a URL?
推荐答案
如果启用了 cURL,您可以使用它来获取整个标头或仅获取响应代码.以下代码将响应代码分配给 $response_code
变量:
If cURL is enabled, you can use it to get the whole header or just the response code. The following code assigns the response code to the $response_code
variable:
$curl = curl_init();
curl_setopt_array( $curl, array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_URL => 'http://stackoverflow.com' ) );
curl_exec( $curl );
$response_code = curl_getinfo( $curl, CURLINFO_HTTP_CODE );
curl_close( $curl );
要获取整个标头,您可以发出 HEAD 请求,如下所示:
To get the whole header you can issue a HEAD request, like this:
$curl = curl_init();
curl_setopt_array( $curl, array(
CURLOPT_HEADER => true,
CURLOPT_NOBODY => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_URL => 'http://stackoverflow.com' ) );
$headers = explode( "
", curl_exec( $curl ) );
curl_close( $curl );
这篇关于PHP get_headers() 替代的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP get_headers() 替代
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01