首頁  >  文章  >  後端開發  >  php://input和$_post的差別是什麼?

php://input和$_post的差別是什麼?

青灯夜游
青灯夜游原創
2020-04-25 16:47:402539瀏覽

php://input和$_post的差別是什麼?下面這篇文章跟大家介紹一下。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。

php://input和$_post的差別是什麼?

手冊中摘取的幾句話:

  1. 當HTTP POST 請求的Content-Type 是application/x-www-form-urlencoded 或multipart/form-data 時,會將變數以關聯陣列形式傳入目前腳本。

  2. php://input 是個可以存取要求的原始資料的唯讀流。 enctype="multipart/form-data" 的時候php://input 是無效的。

驗證下:

post.html

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
    <form action="getpost.php" method="post">
        <input type="text" name="name" value="saisai">
        <input type="submit" name="submit" value="submit">
    </form>
</body>
</html>

getpost.php

<?php
    echo "----------input--------<br />";
    var_dump(file_get_contents(&#39;php://input&#39;, &#39;r&#39;));
    echo "----------post---------<br />";
    var_dump($_POST);
?>

一、enctype ="application/x-www-form-urlencoded"

請求主體:

Content-Type: application/x-www-form-urlencoded
Content-Length: 25name=saisai&submit=submit

輸出:

----------input--------

string &#39;name=saisai&submit=submit&#39; (length=25)

----------post---------

array (size=2)
  &#39;name&#39; => string &#39;saisai&#39; (length=6)
  &#39;submit&#39; => string &#39;submit&#39; (length=6)

小結:當enctype="application/x- www-form-urlencoded"時,請求主體(request body)中的資料(name=saisai&submit=submit)轉換成關聯數組放入$_POST,而php://input 則取得的是原始資料(raw data)。

二、enctype=「multipart/form-data」時

2.1 表單:

    <form action="getpost.php" method="post" enctype="multipart/form-data">
        <input type="text" name="name" value="saisai">
        <input type="submit" name="submit" value="submit">
    </form>

請求主題:

Content-Type: multipart/form-data; boundary=---------------------------22554656810024
Content-Length: 249

-----------------------------22554656810024
Content-Disposition: form-data; name="name"

saisai
-----------------------------22554656810024
Content-Disposition: form-data; name="submit"

submit
-----------------------------22554656810024--

輸出:

----------input--------

string &#39;&#39; (length=0)

----------post---------

array (size=2)
  &#39;name&#39; => string &#39;saisai&#39; (length=6)
  &#39;submit&#39; => string &#39;submit&#39; (length=6)

小結:在enctype="multipart/form-data" 且沒有上傳檔案控制項時,$_POST 能正常列印數據,php:// 無效。

2.2 表單(新增一個檔案上傳):

<form action="getpost.php" method="post" enctype="multipart/form-data">
        <input type="text" name="name" value="saisai">
        <input type="submit" name="submit" value="submit">
 </form>

請求主題:

Content-Type: multipart/form-data; boundary=---------------------------272321281228527
Content-Length: 68386

-----------------------------272321281228527
Content-Disposition: form-data; name="name"

saisai
-----------------------------272321281228527
Content-Disposition: form-data; name="filename"; filename="dog.png"
Content-Type: image/png

                   一堆乱码                    
-----------------------------272321281228527
Content-Disposition: form-data; name="submit"

submit
-----------------------------272321281228527--

輸出:

----------input--------

string &#39;&#39; (length=0)

----------post---------

array (size=2)
  &#39;name&#39; => string &#39;saisai&#39; (length=6)
  &#39;submit&#39; => string &#39;submit&#39; (length=6)

小結:在enctype="multipart/form -data" 且有上傳檔案控制項時,$_POST 能列印出傳入的數據,但排除了上傳的任何內容。 php:// 無效。

 三、enctype="text/plain"

#表單:

<form action="getpost.php" method="post" enctype="text/plain">
        <input type="text" name="name" value="saisai">
        
        <input type="submit" name="submit" value="submit">
</form>

請求主體:

Content-Type: text/plain
Content-Length: 28
name=saisai
submit=submit

輸出:

----------input--------

string &#39;name=saisai

submit=submit

&#39; (length=28)

----------post---------

array (size=0)
  empty

小結:enctype="text/plain"時,$_POST中沒有內容,php://input中以鍵值對的方式存放。

總結:

  1. 當HTTP POST 請求的Content-Type 是application/x-www-form-urlencoded 或multipart/form-data :php://input 中是形同a=1&b=2的原始資料。 $_POST 中是關聯數組,且沒有上傳控制項的內容。

  2. php://input 是可以存取要求的原始資料的唯讀流。 enctype="multipart/form-data" 的時候php://input 是無效的。

  3. $_POST 不能取得 Content-Type = "text/plain"時 post的數據, php://input可以。

更多相關知識,請追蹤 PHP中文網! !

以上是php://input和$_post的差別是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn