文件正在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为空,即从请求中未收到任何数据