如何用php替换字符串和上传

时间:2018-05-08 06:10:17

标签: php

我希望从base64 png上传图片,并使用不同的图片类型重命名。

Try.isSuccess

1 个答案:

答案 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);
}