Fri, 17 May 2024
NetArt Media     Pay 2, Get 3!    


How to write a function which ckecks if a specified file exists?

By: Peter, NetArt Media
Sat, 7 August 2021

<?
function FileExist($filename)
{
if(file_exists($filename))
{
return false;
}

else

{
return true;
}

}

?>


Category: PHP Examples
Share this post:



See All Scripts






Subscribe for our newsletter

Receive the latest blog posts direct in your mailbox