数组解析错误:语法错误,数组

时间:2017-06-27 20:34:53

标签: php arrays header file-get-contents

我只是想知道,这段代码出了什么问题?

$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en\r\n" .
              "Cookie: foo=bar\r\n"
  )
);

$context = stream_context_create($opts);

// Open the file using the HTTP headers set above
$file = file_get_contents('http://www.example.com/', false, $context);

我收到错误Parse错误:语法错误,意外的''http''(T_CONSTANT_ENCAPSED_STRING),在第2行的example.php中期待','或')'。请帮助

0 个答案:

没有答案