我的php脚本如下所示:
<?php
$con=mysqli_connect('mysql.hostinger.in','username','password','databasename');
$data = $_POST['img'];
$name=$_POST['name'];
$data = base64_decode($data);
$file = 'images/'. md5($name) . '.png';
if (file_exists($file)) {
unlink($file);
}
$success = file_put_contents($file,$data);
echo "success";
?>
有两个问题:
Size of a request header field exceeds server limit
。&#34; 请帮我解答我该怎么办?为了测试目的,我已经通过在线网站将图像转换为base64
字符串。