file handling
|file exists
function to check if a file exists
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.