Thanks for your reply, Weedpacket.
Sorry, you're right; the first example is not a relative path. It is indeed an absolute path. My mistake.
I probably should have asked, "Why does the first example return FALSE?"
Here is another example, again, using "script.php", which is located in Apache's document root:
//Returns FALSE.
file_exists('/script.php');
//Returns TRUE.
file_exists('./script.php');
If indeed file_exists() will accept either an absolute or a relative path, why do both lines of code in the above example not return TRUE?
Thanks!