Prüfen ob Datei existiert
| ID | 179 |
|---|---|
| Link Reference | Not set |
| Link Credits | Not set |
| Link Technical Documentation | Not set |
| PlCodelang | PHP |
| PlGroup | Filehandling |
| PlItemTitle | Prüfen ob Datei existiert |
| Code | $filePath = "/home/myUser/test.txt"; if (file_exists($filePath)) { echo "There it is! ;-)" } else { "Whow, file is missing at this place :-(" } |
| Result Example |