1. 程式人生 > >幾種PHP獲取POST資料技巧

幾種PHP獲取POST資料技巧

原文地址:http://developer.51cto.com/art/200912/168103.htm

對於一個經驗豐富的PHP老手來說,他可以靈活方便的運用PHP語言實現很多他所能想到的功能。從這一點也能看出,PHP是一個功能強大的語言。下面我們來一起看看PHP獲取POST資料的幾種方法。

(一)表單POST方式提交情況下PHP獲取POST資料

$_POST 與 php://input可以取到值,$HTTP_RAW_POST_DATA 為空
$_POST 以關聯陣列方式組織提交的資料,並對此進行編碼處理,如urldecode,甚至編碼轉換。
php://input 可通過輸入流以檔案讀取方式取得未經處理的POST原始資料

(二)fsockopen提交POST資料下PHP獲取POST資料

  1. $sock = fsockopen("localhost", 80, 
    $errno, $errstr, 30);  
  2. if (!$sock) die("$errstr ($errno)\n");  
  3. $data = "txt=" . urlencode("中") . 
    "&bar=" . urlencode("Value for Bar");  
  4. fwrite($sock, "POST /posttest/response
    .php HTTP/1.0\r\n");  
  5. fwrite($sock, "Host: localhost\r\n");  
  6. fwrite($sock, "Content-type: applicat
    ion/x-www-form-urlencoded\r\n");  
  7. fwrite($sock, "Content-length: " . 
    strlen($data) . "\r\n");  
  8. fwrite($sock, "Accept: */*\r\n");  
  9. fwrite($sock, "\r\n");  
  10. fwrite($sock, "$data\r\n");  
  11. fwrite($sock, "\r\n");  
  12. $headers = "";  
  13. while ($str = trim(fgets($sock,
     4096)))  
  14. $headers ."$str\n";  
  15. echo "\n";  
  16. $body = "";  
  17. while (!feof($sock))  
  18. $body .fgets($sock, 4096);  
  19. fclose($sock);  
  20. echo $body; 

PHP獲取POST資料結論:

1. 用php://input可以很便捷的取到原始POST資料

2. $HTTP_RAW_POST_DATA 僅在POST的Content-Type型別不為PHP識別時才有效

如通常通過頁面表單提交後的POST資料,不能通過$HTTP_RAW_POST_DATA提取到。因其編碼型別屬性(enctype屬性)為 application/x-www-form-urlencoded、multipart/form-data。

注:即使在頁面內顯性地改變enctype屬性為PHP不可識別的型別,仍無效。因表單提交編碼屬性是表單限定,不可識別的型別將被認為按預設編碼方式提交(即application/x-www-form-urlencoded)

3. $_POST僅當資料按 application/x-www-form-urlencoded 型別提交時才能實現PHP獲取POST資料。

相關文獻:http://www.01happy.com/php-post-request-get-json-param/