I need to check if a file is on HDD at a specified location ($path.$file_name).
Which is the difference between is_file() and file_exists() functions and which is better/faster to use in PHP?
|
I need to check if a file is on HDD at a specified location ($path.$file_name). Which is the difference between is_file() and file_exists() functions and which is better/faster to use in PHP? |
|||
|
|
|
|
|||
|
is_file() is fastest
Edit: @Tivie thanks for the comment. Changed number of cycles from 1000 to 10k. The result is: a) when the file exists is_file x 10000 0.0069808959960938 seconds file_exists x 10000 0.032128095626831 seconds is_readable x 10000 0.033859014511108 seconds b) when the file does not exist is_file x 10000 0.014456987380981 seconds file_exists x 10000 0.016927003860474 seconds is_readable x 10000 0.018918991088867 seconds Weird that with or without clearstatcache(); my tests showed the same results... |
|||||||
|