“Funkcja laravel, aby sprawdzić, czy obraz istnieje, czy nie” Kod odpowiedzi

Obraz istnieje w Laravel

if(File::exists(public_path('images/1461177230.jpg'))){    dd('File is exists.');}else{    dd('File is not exists.');}
Tyagi420

Obraz istnieje w Laravel

if(file_exists(public_path('images/1461177230.jpg'))){    dd('File is exists.');}else{    dd('File is not exists.');}
Tyagi420

Funkcja laravel, aby sprawdzić, czy obraz istnieje, czy nie

//Function will check if image exist then returned the passed image otherwise return the default image
function checkImage($path = '', $placeholder = '')
{
    if (empty($placeholder)) {
        $placeholder = 'placeholder.png';
    }

    if (!empty($path)) {
        $url = explode('storage', $path);
        $url = public_path() . '/storage' . $url[1];
        $isFile = explode('.', $url);
        if (file_exists($url) && count($isFile) > 1)
            return $path;
        else
            return asset('img/' . $placeholder);
    } else {
        return asset('img/' . $placeholder);
    }
}
Fani385

Odpowiedzi podobne do “Funkcja laravel, aby sprawdzić, czy obraz istnieje, czy nie”

Pytania podobne do “Funkcja laravel, aby sprawdzić, czy obraz istnieje, czy nie”

Więcej pokrewnych odpowiedzi na “Funkcja laravel, aby sprawdzić, czy obraz istnieje, czy nie” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu