Posts Tagged ‘file_get_contents’

ปัญหา file_get_contents กับ cookie

วันก่อนผมจำเป็นต้องใช้ function file_get_contents แต่ไม่สามารถ เรียกใช้หรือแสดง cookie ในหน้านั้นๆ ได้ นั่งมึน !-_- อยู่ตั้งนานกว่าจะหาวิธีได้
ก็จะเอามาให้เพื่อนๆ ดูกันด้วย เผื่อวันใด วัน หนึ่ง จำเป็นต้องได้ใช้กัน

$opts = array(‘http’ => array(‘header’=> ‘Cookie: ‘ . $_SERVER[‘HTTP_COOKIE’]."\r\n"));

 

$context = stream_context_create($opts);

 

$contents = file_get_contents([string filename], false, $context);

 

print $contents;

Read the rest of this entry »