your must parse array to json with json_encode php function try this example $arr_tojson = array( 'dt' => 1, 'dt2' => 2, ); $arr_tojson = json_encode($arr); ...
確定! 回上一頁