我尝试使用 file_put_contents 上传目录中的图像,文件已上传但已损坏,我无法打开它。这是我的代码:
define('UploadDir','../Dir/images');
$path = "image.png";
$data="..."; //image base64 string
$file = UploadDir ."/". $path;
$success = file_put_contents($file, $data);
echo $success ? $file : 'Unable to save the file.';