在线主机上的laravel中无法检查文件是否存在

时间:2019-06-30 07:09:38

标签: php laravel-5

我需要检查主机中是否存在文件,但是值返回方法file_exists()在host中始终为false。此代码在localhost中运行(并返回true)?

$file_path = storage_path() .'\app\public\image\13.jpg';
if (file_exists($file_path))
{
     return response()
    ->download($file_path, '13.jpg',['Content-Length: '
        . filesize($file_path)]);
}

0 个答案:

没有答案