我希望从base64 png上传图片,并使用不同的图片类型重命名。
Try.isSuccess
答案 0 :(得分:0)
尝试使用内置于base64的file_get_contents
data uri protocol wrapper:
if ($img) {
$contents = file_get_contents($img); // $img = 'data:image/png;base64,....'
// setting $file name etc.
$success = file_put_contents($file, $contents);
}