我只是想知道,这段代码出了什么问题?
$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中期待','或')'。请帮助