PHP provides the built-in function is_dir to check whether the incoming path parameter is a directory and returns true if it is a directory. That is to say, if the parameter passed in is a file or does not exist, it will be false, so the current parameter cannot be said to be either a folder or a file. Another thing to note is that parameters support relative paths and absolute paths.
Function: is_dir()
Function: Determine whether the given file name is a directory
Description:
bool is_dir ( string $filename )
Returns TRUE if the filename exists and is a directory.
If filename is a relative path, its relative path is checked against the current working directory.
Note: The result of this function will be cached. See clearstatcache() for more information.
Example 1
?
2 3 4 5
|
var_dump(is_dir('bogus_dir/abc')) . "n"; var_dump(is_dir('..')); //one dir up ?> The above example will output: bool(false)
Previous article:Application example of PHP file reading function, _PHP tutorial
Next article:Alternative method of PHP function overloading-detailed explanation of pseudo-overloading, detailed explanation of overloading_PHP tutorial
Statement of this Website
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
Latest Articles by Author
Latest Issues
Group MySQL results by ID for looping over
I have a table with flight data in mysql. I'm writing a php code that will group and displ...
From 2024-04-06 17:27:56
0
1
406
Related Topics
More>
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
|