I have been having problems with file_exists function in PHP that it always returns false, though the file is there as I can remove the if statement and it shows up fine.
$filename = $_SERVER['DOCUMENT_ROOT']."/images/profilepictures/1.png";
if (file_exists($filename) == true)
{
$output .= '<img src="'.$filename.'" alt="profile picture" width="200"/>';
}
The $filename echos as:
/home/content/k/e/r/kernelkev/html/images/profilepictures/1.png
I have been googling this and most answers are to use the DOCUMENT_ROOT, but it still does not work for me.
Could anyone shed some light on this as it is really annoying me now.
This seemed to fix it...
$filename = "/images/profilepictures/1.png";
if (file_exists("..".$filename))
{
$output .= '<img src="'.$filename.'" alt="profile picture" width="150"/>';
}
I have no idea why, but there we go.
$filenameincludes theDOCUMENT_ROOT, I'd actually be fairly surprised if the code actually worked if you just took out the if statement. – John Flatness Aug 28 '11 at 20:19$filenamethroughrealpath()before checking whether the file exists. Other problem may be that there are some safe mode restrictions in place and they don't allow the function to look around an absolute file path. – macbirdie Aug 28 '11 at 20:24img srcattribute when it works correctly, it'd be easy to miss the effects of being one or more subdirectories off from where you think you are. – John Flatness Aug 28 '11 at 20:26