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

2020-07-16 10:06:37
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('php://input', 'r'));
    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 'name=saisai&submit=submit' (length=25)

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

array (size=2)
  'name' => string 'saisai' (length=6)
  'submit' => string 'submit' (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 '' (length=0)

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

array (size=2)
  'name' => string 'saisai' (length=6)
  'submit' => string 'submit' (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 '' (length=0)

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

array (size=2)
  'name' => string 'saisai' (length=6)
  'submit' => string 'submit' (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 'name=saisai

submit=submit

' (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的區別是什麼?的詳細內容,更多請關注TW511.COM其它相關文章!