PHP - check multiple files with file_exists?

Alster

New member
Basically I need to check if multiple files exist. I've tried:
if (file_exists("blarg.php" && "nom.php"))
if (file_exists("blarg.php" || "nom.php"))
if (file_exists("blarg.php", "nom.php"))

but they don't seem to work. Any help?
 
Back
Top