PHP - 接收 josn資料

PHP - 接收 josn資料

當使用者,使用的是Content-Type:application/json的方式呼叫時

PHP-CI無法使用$this->input->post('')取得,

要改以下面這種方式取得

https://stackoverflow.com/questions/19004783/reading-json-post-using-php

$json = file_get_contents('php://input');
$obj = json_decode($json);