为了账号安全,请及时绑定邮箱和手机立即绑定

laravel 无法将图像数据写入路径

laravel 无法将图像数据写入路径

PHP
慕娘9325324 2022-06-11 10:45:59
无法存储图像总是说无法写入图像数据错误:无法将图像数据写入路径(E:\work\iShop-Admin-backend\storage/app/public/images/p/4069/11016/ 4069_11016_600x600.jpg) 我的代码:            $destinationPath = storage_path() . '/app/public/images/p/' . $product->id_product . '/';        if (!File::exists($destinationPath)) {            File::makeDirectory($destinationPath);        }        for ($i = 1; $i<=6; $i++){            if($row["image_{$i}"] != "")                $value = $row["image_{$i}"];            $contents = file_get_contents($value);            $imageBase64 = base64_encode($contents);            $filetype = \File::extension($value);            //$ext = ltrim($filetype, 'image/');            $ext = 'image/' . $filetype;            $media = 'data:' . $ext . ';base64,' . $imageBase64;            //Log::info($media);            //Log::info($ext);            if (!empty($media)) {                $position = ProductImage::where('id_product', $product->id_product)->max('position');                $data = array(                    'id_product' => $product->id_product,                    'position' => $position ? $position + 1 : 1,                    'extension' => '.' . $filetype                );                if ($i == 1) {                    $data['cover'] = 1;                } else {                    $data['cover'] = 0;                }                $image = ProductImage::create($data);                LogController::log('STORE', 'catalog/product/upload/' . $product->id_product, $product->id_product, 'PRODUCT', 'add image to product where id_product=' . $product->id_product, null, $image);                if (!File::exists($destinationPath . $image->id_image)) {                    File::makeDirectory($destinationPath . $image->id_image);                    $destinationPath = $destinationPath . $image->id_image . '/';                    $height = Image::make($media)->height();                    $width = Image::make($media)->width();                }            }        }如何解决?
查看完整描述

1 回答

?
繁华开满天机

TA贡献1816条经验 获得超4个赞

除此之外,您需要确保文件夹路径存在并且设置了正确的权限。


$relPath = 'img/product/';

    if (!file_exists(public_path($relPath))) {

        mkdir(public_path($relPath), 777, true);

    }

$relPath相对于public目录的路径在哪里。


但是,此要求是特定于 Windows 的。在linux中,如果文件夹目录不存在,则会创建它。


查看完整回答
反对 回复 2022-06-11
  • 1 回答
  • 0 关注
  • 97 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信