[PHP开发APP接口]②--JSON方式封装通信接口

[PHP开发APP接口]②--JSON方式封装通信接口_第1张图片
Paste_Image.png
[PHP开发APP接口]②--JSON方式封装通信接口_第2张图片
Paste_Image.png
1,
    'name'=>"tong"
);

echo json_encode($arr);//{"id":1,"name":"tong"}

?>

json_encode

会接收UTF-8数据格式

$data="输出JSON数据";//"\u8f93\u51faJSON\u6570\u636e"
$newData=iconv('UTF-8','GBK',$data);
echo $data."
";//输出JSON数据 echo $newData."
";//����JSON���� echo json_encode($newData);//null
[PHP开发APP接口]②--JSON方式封装通信接口_第3张图片
Paste_Image.png
[PHP开发APP接口]②--JSON方式封装通信接口_第4张图片
Paste_Image.png

response.php

$code,
                'message'=>$message,
                'data'=>$data
            );

            echo json_encode($result);
            exit;
        }

    }
}

?>

test.php

1,
    'name'=>'singwa'
);

Response::json(200,'数据组装成功!',$arr);

Paste_Image.png

你可能感兴趣的:([PHP开发APP接口]②--JSON方式封装通信接口)