Is_file () function user guide in PHP, is_file User Guide _ PHP Tutorial

Source: Internet
Author: User
Is_file () function user guide in PHP and is_file User Guide. In PHP, the is_file () function User Guide and the is_file user guide is_file () function checks whether the specified file name is a normal file. Is_file () function user guide in is_file-Tellswhetherthefilenameisaregularfile PHP, is_file User Guide

The is_file () function checks whether the specified file name is a normal file.

Is_file-Tells whether the filename is a regular file

Usage:
Bool is_file (string $ filename) $ file is a required parameter
Returns TRUE if the object exists and is normal.

Let's take a look at Example 1:

<?phpvar_dump(is_file('a_file.txt')) . "\n";var_dump(is_file('/usr/bin/')) . "\n";?>

The above example will output:
Bool (true)
Bool (false)

Example 2:

<?phpfunction isfile($file){return preg_match('/^[^.^:^?^-][^:^?]*.(?i)' . getexts() . '$/',$file);//first character cannot be . : ? - subsequent characters can't be a : ?//then a . character and must end with one of your extentions//getexts() can be replaced with your extentions pattern}function getexts(){//list acceptable file extensions herereturn '(app|avi|doc|docx|exe|ico|mid|midi|mov|mp3|mpg|mpeg|pdf|psd|qt|ra|ram|rm|rtf|txt|wav|word|xls)';}echo isfile('/Users/YourUserName/Sites/index.html');?>

Example 3:

<?phpfunction deletefolder($path){if ($handle=opendir($path)){while (false!==($file=readdir($handle))){if ($file<>"." AND $file<>".."){if (is_file($path.'/'.$file)){@unlink($path.'/'.$file);}if (is_dir($path.'/'.$file)){deletefolder($path.'/'.$file);@rmdir($path.'/'.$file);}}}}}?>

This function deletes all files and folders.

The above is all the content of this article. I hope you will like it.

Usage Guide for functions () and is_file usage guide the is_file () function checks whether the specified file name is a normal file. Is_file-Tells whether the filename is a regular file...

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.