×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

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


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

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

 else 

{ 
          return true; 
      } 

  } 

  ?>

Category: PHP

 
<< Go back