$art=@file_get_contents('
http://www.amazon 
.'.lz::$c['zone'].'/review/product/'.$asin,null,stream_context_create(array('http'=>array('method'=>"GET",'header'=>"User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 GTB7.1 ( .NET CLR 3.5.30729)\r\n"))));
อย่างนี้จะแก้ยังไง ครับ review ไม่ได้
เพิ่มบรรทัดนี้ไว้ข้างบน $art
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"));
$context = stream_context_create($opts);
แล้วก็ แก้ $art เป็นแบบนี้
$art=@file_get_contents('http://www.amazon.'.lz::$c['zone'].'/review/product/'.$asin,null,$context);