PHP Function List
fileexists doesn't exist. Closest matches:
- file_exists
- filter_list
- function_exists
- trait_exists
- class_exists
- fileperms
- interface_exists
- method_exists
- apc_exists
- dba_exists
- file
- list
- exit
- property_exists
- filesize
- filetype
- array_key_exists
- msg_queue_exists
- fgets
- ftp_nlist
Site Search Results
-
Parameters. filename. Path to the file or directory. On windows, use //computername/share/filename or \\computername\share\filename to check files on network shares.
-
I bet the other problems you had were the result of not calling clearstatcache(), which can cause PHP to act like a file exists though it has since been deleted.
-
Sometimes in situations where file_exists fails (returns false even though the file does exist) stat will work.
-
unlink() does not clear the cache if you are performing file_exists() on a remote file like: <?php if (file_exists ("ftp://ftp.example.com/somefile"
-
if(is_file ("C:/server/htdocs/mysite/images/10.jpg")) echo 'file exists'; # WIN XP, PHP5 # processing time: ~ 0.0004 sec. if(is_file ("images/10.jpg")) echo 'file exists';
-
file_ exists; file_ get_ contents; file_ put_ contents; file; fileatime; filectime; filegroup; fileinode; filemtime; fileowner; fileperms; filesize; filetype; flock; fnmatch; fopen
-
$filename = "test.dat"; if (!file_exists($filename)) { touch($filename); // Create blank file chmod($filename,0666); }
-
However, file_exists(dirname) returned true. Eventually I figured out what happened and was able to rmdir(dirname), then created the directory correctly.
-
Supported Protocols and Wrappers - ManualPHP comes with many built-in wrappers for various URL-style protocols for use with the filesystem functions such as fopen(), copy(), file_exists() and filesize().
-
is_readable() - Tells whether a file exists and is readable; file_exists() - Checks whether a file or directory exists; fwrite() - Binary-safe file write

Other forms of search
To search the string "fileexists" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
