php接收与返回json数据

一、php接收json数据

$json_raw = file_get_contents("php://input");
$json_data = json_decode($json_raw);

二、php返回json数据

echo json_encode(array('status' => 'warning', 'data' => $result, 'page' => $page, 'total' => $temp));

 

你可能感兴趣的:(PHP基础)