1. 程式人生 > >php服務端接收post的json資料

php服務端接收post的json資料

最近用到ext與PHP互動,ext把json資料post給PHP,但在PHP裡面$_post獲取不到,$_REQUEST也獲取不到,但是通過firedebug看到的請求資訊確實是把JSON資料post給了PHP,這什麼情況?
突然想到了以前接觸過flash將圖片二進位制流傳給php,靈機一動用$GLOBALS['HTTP_RAW_POST_DATA']獲取到了。於是就深入的查了一下,原來PHP預設只識別application/x-www.form-urlencoded標準的資料型別,因此,對型如text/xml或者 soap 或者 application/octet-stream之類的內容無法解析,如果用$_POST陣列來接收就會失敗!故保留原型,交給$GLOBALS['HTTP_RAW_POST_DATA']來接收。


php的HTTP_RAW_POST_DATA
用Content-Type=text/xml型別,提交一個xml文件內容給了php server,要怎麼獲得這個POST資料。
The RAW/ uninterpreted HTTP POST information can be accessed with:$GLOBALS['HTTP_RAW_POST_DATA'] This is useful in cases where thepost Content-Type is not something PHP understands (such astext/xml).
由於PHP預設只識別application/x-www.form-urlencoded標準的資料型別,因此,對型如text/xml的內容無法解析為$_POST陣列,故保留原型,交給$GLOBALS['HTTP_RAW_POST_DATA']來接收。

另外還有一項php://input 也可以實現此這個功能
php://input允許讀取 POST 的原始資料。和 $HTTP_RAW_POST_DATA 比起來,它給記憶體帶來的壓力較小,並且不需要任何特殊的php.ini 設定。php://input 不能用於enctype="multipart/form-data"。

應用
a.htm程式碼如下:
<form action="post.php" method="post">
<input type="text" name="user">
<input type="password" name="password">
<input type="submit">

</form>

post.php程式碼如下:
<?echo file_get_contents("php://input");?>