Curriculum
Course: PHP Basic
Login

Curriculum

PHP Basic

PHP Install

0/1

PHP Casting

0/1

PHP Constants

0/1

PHP Magic Constants

0/1

PHP Operators

0/1

PHP Reference

0/276
Text lesson

is_dir()

Example

Verify if the given filename is a directory:

<?php
$file = “images”;
if(is_dir($file)) {
  echo (“$file is a directory”);
else {
  echo (“$file is not a directory”);
}
?>

What the code above might produce is:

images is a directory

Definition and Usage

The function is_dir() verifies if the given filename is a directory.

Note: This function caches its output. To clear the cache, use clearstatcache().

Syntax

is_dir(file)

Parameter Values

Parameter

Description

file

Essential. gives the location of the file to be checked.

Technical Details

 

Return Value:

If the directory is present, TRUE; if not, FALSE

PHP Version:

4.0+