php取得不到post的解決方法:先檢查頭資訊「content-type」;然後使用「file_get_contents("php://input")」取得輸入流的方式接收post資料即可。
php 取得不到post的值
一般在ajax提交的時候出現這種情況
當我們在ajax參數設定 contentType: 'application/json; charset=utf-8', 用file_get_contents("php://input")取得值$_POST是取得不到的
#1 .檢查頭資訊content-type是不是為「content-type:application/x-www-form-urlencoded" 這種傳輸是以表單的方式提交資料php使用$_POST方式接受。
2.如果頭資訊content-type是不是為「content-type:application/json"這種傳輸是以json方式提交數據,php需要使用file_get_contents("php://input")來取得輸入流的方式接受
更多相關知識,請訪問PHP中文網!
以上是php取得不到post怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!