File in PHP

Source: Internet
Author: User

This article is to explain the PHP in the judge file or whether the directory exists file_exists function, with a few classic examples, the need for small partners can refer to.

Description

BOOL File_exists (String $filename)

Returns TRUE if the file or directory specified by filename is present, otherwise it returns FALSE.

On Windows, use the//Computer name/share/file name or computer name to share the file name to check for network shared files.

In Windows, use//computername/share/filename or computernamesharefilename to check for shared files on your network.

Instance One

?

1 2 3 4 5 6 7 8 <?php $filename = '/jb51.net/aa/to/foo.txt '; if (file_exists ($filename)) {echo "file $filename exists";} else {echo "file $filename does not exist";}?>

The output results are:

File/jb51.net/aa/to/foo.txt already exists

Example Two

?

1 2 3 <?php echo file_exists ("Jb51.net.txt");?>

Returns ture or false directly with file_exists.

The above mentioned is the entire content of this article, I hope you can enjoy.

Note < > : More Wonderful tutorials please focus on Triple programming

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.