我试图检查我的 symfony 2 的 /uploads 文件夹中是否存在文件。
$file = $this->getAssetUrl('/uploads/hd/'.$gift->getImage());
if(file_exists($file)) return $this->getAssetUrl('/uploads/hd/'.$gift->getImage());
else return $this->getAssetUrl('/uploads/large/'.$gift->getImage());
这总是返回错误,我调试了所有字符串并且路径正确,手动检查文件是否存在。有任何想法吗?