“Obraz istnieje w Laravel” 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 “Obraz istnieje w Laravel”

Pytania podobne do “Obraz istnieje w Laravel”

Więcej pokrewnych odpowiedzi na “Obraz istnieje w Laravel” w PHP

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

Przeglądaj inne języki kodu