<?php
$a="https://sayat.me/chitmarike";
$html=file_get_contents("$a");
$headers = get_headers($a);
preg_match('~id="bar" value="([^"]*)"~', $html, $img);
$img1 = $img[1];
echo $img1;
preg_match('/(?<=csam=).*?(?=;)/', $headers, $cook);
$cook1 = $cook[1];
echo $cook1;
?>
我想从Cookie标头中提取csam
的值
这就是它的样子:
Array
(
[0] => HTTP/1.1 200 OK
[1] => Date: Fri, 07 Apr 2017 19:05:03 GMT
[2] => Content-Type: text/html; charset=UTF-8
[3] => Connection: close
[4] => Set-Cookie: __cfduid=d6dea25f00686a7cef5f0a3d21195207c1491599902; expires=Sat, 07-Apr-18 19:05:23 GMT; path=/; domain=.sayat.me; HttpOnly
[5] => Set-Cookie: PHPSESSID=m3hvgquu2vtcp9ingqmkttqgs2; path=/
[6] => Expires: Thu, 19 Nov 1981 08:52:00 GMT
[7] => Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
[8] => Pragma: no-cache
[9] => Set-Cookie: csam=5844bc1d44; expires=Fri, 07-Apr-2017 19:35:36 GMT; Max-Age=1800; path=/
[10] => X-CSRF-Protection: SAM v2.0
[11] => Set-Cookie: country=IN; expires=Sun, 07-May-2017 19:05:36 GMT; Max-Age=2592000; path=/
[12] => Vary: Accept-Encoding
[13] => McID: sam-web4
[14] => Server: cloudflare-nginx
[15] => CF-RAY: 34bf420dae9069fb-LHR
)
但是我收到了这个错误
警告:preg_match()期望参数2为字符串,给定的数组为 第9行的C:\ xampp \ htdocs \ sayat \ index.php
我做错了什么?
答案 0 :(得分:0)
函数get_headers返回一个数组,但preg_match需要一个字符串,如错误中所述。
在调用get_headers
之前连接preg_match
的结果。
答案 1 :(得分:0)
花时间阅读并充分理解错误信息并非浪费时间。错误消息简单明了:preg_match() expects parameter 2 to be string, array given
。结论,在preg_match('/(?<=csam=).*?(?=;)/', $headers, $cook);
中,$headers
是一个数组,当preg_match
期望主语(第二个参数)是一个字符串时,仅此而已。
问题,$headers
由get_headers
填充,返回一个数组。解决问题的两种可能方法:
/csam=\K[^;]+/
get_headers
的第二个参数设置为1并使用数组结构查找所需信息:示例:
$a="https://sayat.me/chitmarike";
$headers = get_headers($a, 1);
foreach ($headers['Set-Cookie'] as $v) {
if ( strpos($v, 'csam=') === 0 ) {
$cook = substr($v, 5, strpos($v, ';') - 5);
break;
}
}