PHP is_dir() Function
Complete PHP Filesystem Reference
Definition and Usage
The is_dir() function checks whether the specified file is a directory.
This function returns TRUE if the directory exists.
Syntax
Parameter |
Description |
file |
Required. Specifies the file to check |
Tips and Notes
Note: The result of this function are cached. Use clearstatcache() to
clear the cache.
Example
<?php
$file = "images";
if(is_dir($file))
{
echo ("$file is a directory");
}
else
{
echo ("$file is not a directory");
}
?>
|
The output of the code above could be:
Complete PHP Filesystem Reference
Learn XML with <oXygen/> XML Editor - Free Trial!
|
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|