我正在使用PHP,我正在获取API中的Base64图像,我想保存/存储到数据库中,并希望上传图像到服务器,我怎么能做到这一点?我尝试了以下代码,但得到以下错误“无法打开内容,Http writer doest not support writetable connections”
function imageupload()
{
$data = json_decode(file_get_contents("php://input"), TRUE);
$files=file_get_contents($_FILES["file"]["tmp_name"]);
$image = base64_decode($files);
$image_name = md5(uniqid(rand(), true));
$filename = $image_name . '.' . 'png';
$path = base_url().'upload/blog/';
file_put_contents($path . $filename, $image);
}
1条答案
按热度按时间1zmg4dgp1#
从路径中删除
base_url()
。或
看看这个
jQuery:
PHP语言:
型