确定文件是否存在于 Laravel 5 中
2022-08-30 14:39:20
目标 :如果文件存在,请加载该文件,否则加载 .default.png
我试过了
@if(file_exists(public_path().'/images/photos/account/{{Auth::user()->account_id}}.png'))
<img src="/images/photos/account/{{Auth::user()->account_id}}.png" alt="">
@else
<img src="/images/photos/account/default.png" alt="">
@endif
结果
它一直加载我的默认图像,而我100%确定它存在。1002.png
如何正确检查该文件是否存在?