I want to check if the path exists, I have tried:
if(is_dir('/public_html/uploads/2013/')){
//do stuff
} else {
//do stuff
}
Also tried
var_dump(is_dir('/public_html/uploads/2013/'));
Returns false, but the path exists.
I also tried:
if(file_exists('/public_html/uploads/2013/')){
//do stuff
} else {
//do stuff
}
No luck, any ideas? I'm all out.
I do not think that path
/public_html/uploads/2013
exists at your system, because it is not a relative, but an absoulte path from the root of the filesystem, because of the starting/
.