function image($image)
{
$imageName = “20188_” . date(“His”, time()) . “_” . rand(1111, 9999) . ‘.png’;

$image = str_replace(" ","+",$image);

if (strstr($image, ",")) {
    $image = explode(',', $image);
    $image = $image[1];
}
$path = "./" . 'uploads/Ver/' . date("Ymd", time());
if (!is_dir($path)) { //判断目录是否存在 不存在就创建
    mkdir($path, 0777, true);
}
$imageSrc = $path . "/" . $imageName; //图片名字
$r = file_put_contents($imageSrc, base64_decode($image));//返回的是字节数
if (!$r) {
    return 1;
} else {
    return $imageSrc;
}

}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐