我需要检查主机中是否存在文件,但是值返回方法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)]);
}