Thursday, October 16, 2025
HomeLanguagesPHP | filetype( ) Function

PHP | filetype( ) Function

The filetype() function in PHP is an inbuilt function which is used to return the file type of a specified file or a directory.

The filetype() function accepts the filename as a parameter and returns one of the seven file types on success and False on failure.

The seven possible return values of the filetype() function are:

  • file: regular file
  • dir: directory
  • char: character special device
  • link: symbolic link
  • fifo: FIFO (named pipe)
  • block: block special device
  • unknown: unknown file type

The result of the filetype() function is cached and a function called clearstatcache() is used to clear the cache.

Syntax:

filetype( $filename )

Parameters: The filetype() function in PHP accepts only one parameter $filename. It specifies the filename of the file whose type you want to know.

Return Value: It returns the type of a file on success and False on failure.

Errors And Exception:

  1. For files which are larger than 2GB some filesystem functions may return unexpected results since PHP’s integer type is signed and many platforms use 32bit integers.
  2. The filetype() function emits an E_WARNING in case of a failure.
  3. The buffer must be cleared if the filetype() function is used multiple times.
  4. The filetype() function emits an E_NOTICE message if the stat call fails or if the file type is unknown.

Examples:

Input : filetype("gfg.txt");
Output : file

Input : filetype("documents");
Output : dir

Below programs illustrate the filetype() function.

Program 1:




<?php
  
// displaying file type using
// filetype() function
echo filetype("gfg.txt");
  
?>


Output:

file

Program 2:




<?php
  
// displaying file type using
// filetype() function
$myfile = "documents";
  
echo $myfile . ': ' . filetype($myfile);
  
?>


Output:

documents : dir

Reference:
http://php.net/manual/en/function.filetype.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11953 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS