Differences between is_file and file_exists in php

Source: Internet
Author: User

Is_file only checks whether the file exists;
File_exists checks whether the file exists or whether the directory exists;
Is_dir: determines whether a directory exists;

Check the manual. Although the results of both functions are cached, The is_file speed is N times faster.
Note the following:
If the file exists, is_file is N times faster than file_exists;
If the file does not exist, is_file is slower than file_exists;
The conclusion is that the file_exits function does not affect the speed because the file actually exists, but the is_file function has a greater impact.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.