Yii如何讀取本地的json文件

後臺須要經過城市查找區號,考慮到城市數據很少,下載了個json文件,本地讀取查找。
一查,結構都是js的ajax讀json,getJson。php的思路仍是曲線救國:讀取成字符串,而後json_encode轉成json格式,代碼部分以下。php

<?php

// Read JSON file
$json = file_get_contents('./student_data.json');

//Decode JSON
$json_data = json_decode($json,true);

//Traverse array and get the data for students aged less than 20
foreach ($json_data as $key1 => $value1) {
    if($json_data[$key1]["Age"] < 20){
        print_r($json_data[$key1]);
        }
}
?>
相關文章
相關標籤/搜索