Thursday, July 4, 2024
HomeLanguagesPhpPHP | 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

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments