以前没设计过API 我想做个JSON的API,直接传递JSON过去,但是好像一定要键值对的方式传递,全文本的话$_POST接收不到东西.一定要键值对方式吗?
以前没设计过API 我想做个JSON的API,直接传递JSON过去,但是好像一定要键值对的方式传递,全文本的话$_POST接收不到东西.一定要键值对方式吗?
$jsoncode = file_get_contents("php://input");
$arr = array();
$arr = convertUrlQuery($jsoncode);
<code>$user_id = $arr['user_id']; $info = $arr['info']; $type =$arr['type'];</code>
当然可以。
<code class="php">$data_one = $GLOBALS['HTTP_RAW_POST_DATA']; $data_two = file_get_contents("php://input");</code>
可以用curl测试,核心语句。
<code class="php">curl_setopt($ch, CURLOPT_POSTFIELDS,"我没有名字");</code>
$postdata = file_get_contents("php://input");