将数组字符串与字符串

时间:2017-09-24 02:50:03

标签: php arrays string curl http-status-codes

我正在完成一个项目,但我需要比较HTTP状态代码是否与另一个相同。我有一个很大的算法,我减少了它,我发现了问题: 我有一个名为" $ file_headers"的数组,并在["状态"]位置保存" HTTP / 1.1 301永久移动",并在if子句中比较" HTTP / 1.1 301永久移动" (显然是一样的),但我的代码并没有和我说的一样。我使用cURL检测HTTP状态代码。我的PHP代码如下:

<?php
// create curl resource
$ch = curl_init();

// set url
curl_setopt($ch, CURLOPT_URL, "fb.com");

//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//enable headers
curl_setopt($ch, CURLOPT_HEADER, 1);
//get only headers
curl_setopt($ch, CURLOPT_NOBODY, 1);
// $output contains the output string
$output = curl_exec($ch);

// close curl resource to free up system resources
curl_close($ch);

$data = explode("\n",$output);
$headers_one = $data;
$headers_two = array();

$headers_two['Status'] = $data[0];
array_shift($data);
foreach($data as $part){
    $middle = explode(":",$part);

    $msg = null;
    if(sizeof($middle) > 2){
      if(strpos($middle[0],"Location") === false){   
          for($i = 1; $i <= sizeof($middle)-1;$i++){
            $msg .= $middle[$i];
          }
      } else {
          for($i = 1; $i <= sizeof($middle)-1;$i++){
            if($i == 1){
                $msg .= $middle[$i] . ":";
            } else {
                $msg .= $middle[$i];
            }
          } 
      }    
    } else if(isset($middle[1])){
      $msg = $middle[1];
    }
    $headers_two[trim($middle[0])] = trim($msg);
}

array_pop($headers_one);
array_pop($headers_one);
array_pop($headers_two);

$file_headers = $headers_two;
if($file_headers["Status"] === ("HTTP/1.1 301 Moved Permanently") || $file_headers["Status"] === ("HTTP/1.1 301")){
  echo "OK!";
} else {
  echo "NO!";
}

//print all headers as array
/*echo "<pre>";
print_r($headers_one);
echo "</pre><br />";*/
echo "<pre>";
echo $file_headers["Status"];
echo "</pre>";
?>

如果有人可以帮助我,我会很感激。感谢并有一个愉快的日子!

1 个答案:

答案 0 :(得分:1)

$headers_two['Status']是唯一不是trim()的元素,因此它周围有一些空格,这使得比较失败。这样做:

$headers_two['Status'] = trim($data[0]);

它会正常工作。