| AND OR | string words | *

file handling

|

file exists


function to check if a file exists


function file_exist( ) [ line 2 ]



full source of file exists [ line 1 - 11 ] | download file exists

1    <? 
2   function file_exist($filename)
3   
4       if(file_exists($filename))
5       { 
6           return false
7       }else{ 
8           return true
9       } 
10   
11   ?>



9 hits by 7 users in the last 30 minutes.