form - php post提交数据 $_POST为空 file_get_content(php://input)可以获取到 这是为什么呢?
php post提交数据 $_POST为空 file_get_content(php://input)可以获取到 这是为什么呢?
环境是用MAMP安装的
form提交的代码如下:
doLogin.php的代码如下
include_once '../include.php';
$username = $_POST['username'];
$password = md5($_POST['password']);
$verify = $_POST['verify'];
$session_verify = $_SESSION['verify'];
var_dump($_POST);
var_dump($_SERVER);
用花瓶抓包的结果:
回复内容:
php post提交数据 $_POST为空 file_get_content(php://input)可以获取到 这是为什么呢?
环境是用MAMP安装的
form提交的代码如下:
doLogin.php的代码如下
include_once '../include.php';
$username = $_POST['username'];
$password = md5($_POST['password']);
$verify = $_POST['verify'];
$session_verify = $_SESSION['verify'];
var_dump($_POST);
var_dump($_SERVER);
用花瓶抓包的结果:
首先php://input
是不受php.ini
设置行为的影响,可以直接获取到post的原始数据的.
而$_POST
是有受限于头限制的.英文手册(中文手册没有这段,略坑)中有如下介绍:
An associative array of variables passed to the current script via the HTTP POST method when using application/x-www-form-urlencoded or multipart/form-data as the HTTP Content-Type in the request.
也就是你的Content-Type
只有是application/x-www-form-urlencoded
或者multipart/form-data
的时候,才会被预定义的变量$_POST收进去.
另外一种情况可以考虑用$HTTP_RAW_POST_DATA
,这个跟php://input
获取到的数据是一样的,但是这个变量有受到php.ini
中的选项always_populate_raw_post_data
的限制.
form action="doLogin.php" 这里action的地址写成全路径试试。
action="./doLogin.php"