Current Location: Home> Function Categories> file_exists

file_exists

Check if the file or directory exists
Name:file_exists
Category:File system
Programming Language:php
One-line Description:Check if the file or directory exists.

Example

 <span class="token php language-php"><span class="token delimiter important"><?php</span>
<span class="token keyword">echo</span> <span class="token function">file_exists</span> <span class="token punctuation">(</span> <span class="token string double-quoted-string">"test.txt"</span> <span class="token punctuation">)</span> <span class="token punctuation">;</span>
<span class="token delimiter important">?></span></span>

Output:

 1
Similar Functions