codeigniter從JSON控制器url返回null!codeigniter從JSON控制器url返回null
這是我的JSON文件控制器:
function data()
{
$var1 = array(
'key_name1' => 'value_name1',
'key_name2' => 'value_name2'
);
header('Content-Type: application/json');
$encode_data = json_encode($var1);
echo $encode_data;
}
,這是結果控制器:
我試圖瀏覽您的網址,http://tickets.eritreaevents.com/agent/data和而不是獲取JSON數據,我被重定向到登錄頁面。也許這就是你的file_get_contents調用發生的情況。嘗試print_r file_get_contents的結果(在修剪和json_decode之前)。 – BareNakedCoder