我在Javascript中使用PHP中的数组到JSON结构时遇到了问题


I am having issues with Array to JSON structure in PHP to be used in Javascript


我总是很难处理从数组到JSON的格式。我使用的是TexoTela的selectbox插件。该插件需要一个json结构,如下所示:

{
    "ajax1": "AJAX option 1",
    "ajax2": "AJAX option 2",
    "ajax3": "AJAX option 3"
}  

我的php代码:

    function get_selectfield_list($col, $table)
    {
        $location_list = array();
        //create an sql string and set it to the $sql variable
        $sql = "SELECT id, $col FROM $table";
        //form the sql query and set it to the $query variable
        $query = $this->db->query($sql);
        //loop through the result_array and set the results to the $location_list array
        foreach ($query->result_array() as $row)
        {
            $value = $row['id']; //set the database table id to to $value variable
            $text = $row[$col]; //set the the $string value to the $text variable
            $location_list = array($value => $text); //form the $location_list array with the the $value and $text values
        }
        echo json_encode($location_list); //convert the $location_list array into a json object and return it.                              
    }  

我的PHP代码返回{"4":"chickenpen 4"}

代替{"4":"chickenpen 4","5":"chickenpen 5", etc....}

我认为这是由于代码:$location_list=array($value=>$text(;每次foreach循环时,它都会创建一个新的数组。如何格式化数组以输出foreach中的所有结果,而不是最后一个结果?

-富

    $location_list[$value] = $text;