Home>Article>Backend Development> How does PHP determine whether it is a folder or a file?

How does PHP determine whether it is a folder or a file?

Guanhui
Guanhui Original
2020-07-28 16:41:17 3199browse

How does PHP determine whether it is a folder or a file?

#How does PHP determine whether it is a folder or a file?

1. Use the "is_file()" function to determine whether it is a file. If it is a file, the return result is true, otherwise it is false;

Usage example

Result

bool(true) bool(false)

2. Use the "is_dir()" function to determine whether it is a directory, and the return result is true or false.

Usage example

Result

bool(false) bool(false) bool(true)

Recommended tutorial: "PHP"

The above is the detailed content of How does PHP determine whether it is a folder or a file?. For more information, please follow other related articles on the PHP Chinese website!

php
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn