我正在尝试从这三行中仅检索 Server: Microsoft-IIS/7.5 什么是 tje 代码?它是一个数组!我使用 print_r 得到这个结果
Content-Type: text/html; charset=utf-8
Expires: -1
Server: Microsoft-IIS/7.5
该代码将搜索单词服务器并在同一行中获取之后的所有单词
我正在尝试从这三行中仅检索 Server: Microsoft-IIS/7.5 什么是 tje 代码?它是一个数组!我使用 print_r 得到这个结果
Content-Type: text/html; charset=utf-8
Expires: -1
Server: Microsoft-IIS/7.5
该代码将搜索单词服务器并在同一行中获取之后的所有单词
如果该字符串在名为 $header 的变量中,
preg_match("/^Server: (.*)$/m", $header, $matches);
$server = $matches[1];
应该得到你的服务器名称
如果标题行在数组中,则代码:
$server = NULL;
for ($i = 0; $i < count($header); $i++)
{
// Look in the line for the server header
$is_match = preg_match("/^Server: (.*)$/", $header[$i], $matches);
// $is_match holds the number of times our pattern matched (up to 1)
if ($is_match > 0)
{
$server = $matches[1];
}
}
如果该Server: ...
行始终是最后一行,则可以使用strstr
.