PHP file_get_contents('php:// input')在执行发布请求时导致空数据

时间:2018-08-22 05:57:51

标签: php

文件正在apache服务器中运行,当邮递员发出请求时,下面显示空输入数据的代码是

$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
     die("Connection failed: " . $conn->connect_error);
}
echo "I am here";
$tempval = file_get_contents('php://input');
//$postdata = json_decode(file_get_contents('php://input'), true);
echo "Data ".$tempval;

此文件的输出

  

我在这里数据

这意味着tempval为空,即从请求中未收到任何数据

Screen shot of postman request

0 个答案:

没有答案