Heim  >  Artikel  >  Backend-Entwicklung  >  把curl回来的cookies处理成数组

把curl回来的cookies处理成数组

WBOY
WBOYOriginal
2016-06-13 13:00:341233Durchsuche

把curl返回的cookies处理成数组
目的只是将Curl返回的Header里面的Cookies转化成数组和获取Location

例子:
……
Cache-Control: private,no-cache="set-cookie"
Expires: -1
Pragma: no-cache
Location: http://example.com/
Set-Cookie: B=1; Path=/
Set-Cookie: C=5; Path=/
Set-Cookie: R=5; Path=/
转成
array("B" => "1","C" => "5","R" => "5" )
并取出 Location 为 $l="http://example.com/";

谢谢了
------解决方案--------------------

$s = <<< TXT<br />
Cache-Control: private,no-cache="set-cookie"<br />
Expires: -1<br />
Pragma: no-cache<br />
Location: http://example.com/<br />
Set-Cookie: B=1; Path=/<br />
Set-Cookie: C=5; Path=/<br />
Set-Cookie: R=5; Path=/<br />
TXT;<br />
<br />
$res = array();<br />
foreach(preg_split("/[\r\n]+/", $s, -1, PREG_SPLIT_NO_EMPTY) as $row) {<br />
  switch($k = strtok($row, ':')) {<br />
    case 'Location':<br />
      $res[$k][] = trim(strtok(''));<br />
      break;<br />
    case 'Set-Cookie':<br />
      $res[$k][trim(strtok('='))] = trim(strtok(';'));<br />
      break;<br />
  }<br />
}<br />
print_r($res);
Array
(
    [Location] => Array
        (
            [0] => http://example.com/
        )

    [Set-Cookie] => Array
        (
            [B] => 1
            [C] => 5
            [R] => 5
        )

)

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn