Table of Contents
PHP常用的基本文件和目录操作总结
目录'
Home php教程 php手册 PHP常用的基本文件和目录操作总结

PHP常用的基本文件和目录操作总结

Jun 13, 2016 am 08:53 AM
php Directory operations

PHP常用的基本文件和目录操作总结

一、基本文件的操作

文件的基本操作有:文件判断、目录判断、文件大小、读写性判断、存在性判断及文件时间等

   1:

   2:     header("content-type","text/html;charset=utf-8");

   3: /*

   4: *声明一个函数,传入文件名获取文件属性

   5: *@param string $fileName 文件名称

   6: */

   7: function getFilePro($fileName)

   8: {

   9:     if(!file_exists($fileName))

  10:     {

  11:         echo '文件不存在
'
;

  12:         return;

  13:     }

  14:     /*是否是普通文件*/

  15:     if(is_file($fileName))

  16:     {

  17:         echo $fileName.'是一个文件
'
;

  18:     }

  19:     /*是否是目录*/

  20:     if(is_dir($fileName))

  21:     {

  22:         echo $fileName.'是一个目录';

  23:     }

  24:     /*输出文件的型态*/

  25:     echo '文件型态是:'.getFileType($fileName).'
'
;

  26:     /*文件大小,转换单位*/

  27:     echo '文件大小是:'.getFileSize(filesize($fileName)).'
'
;

  28:     /*文件是否可读*/

  29:     if(is_readable($fileName))

  30:     {

  31:         echo '文件可读
'
;

  32:     }

  33:     /*文件是否可写*/

  34:     if(is_writable($fileName))

  35:     {

  36:         echo '文件可写
'
;

  37:     }

  38:     /*文件是否可执行*/

  39:     if(is_executable($fileName))

  40:     {

  41:         echo '文件可执行
'
;

  42:     }

  43:

  44:     echo '文件创立时间:'.date('Y年m月j日',filectime($fileName)).'
'
;

  45:     echo '文件最后修改时间:'.date('Y年m月j日',filemtime($fileName)).'
'
;

  46:     echo '文件最后打开时间:'.date('Y年m月j日',fileatime($fileName)).'
'
;

  47: }

  48:

  49: /*

  50: *声明一个函数,返回文件类型

  51: *@param string $fileName 文件名称

  52: */

  53: function getFileType($fileName)

  54: {

  55:     $type = '';

  56:     switch(filetype($fileName))

  57:     {

  58:         case 'file':$type .= '普通文件';break;

  59:         case 'dir':$type .= '目录文件';break;

  60:         case 'block':$type .= '块设备文件';break;

  61:         case 'char':$type .= '字符设备文件';break;

  62:         case 'filo':$type .= '管道文件';break;

  63:         case 'link':$type .= '符号链接';break;

  64:         case 'unknown':$type .= '未知文件';break;

  65:         default:

  66:     }

  67:     return $type;

  68: }

  69:

  70: /*

  71: *声明一个函数,返回文件大小

  72: *@param int $bytes 文件字节数

  73: */

  74: function getFileSize($bytes)

  75: {

  76:     if($bytes >= pow(2,40))

  77:     {

  78:         $return = round($bytes / pow(1024,4),2);

  79:         $suffix = 'TB';

  80:     }

  81:     else if($bytes >= pow(2,30))

  82:     {

  83:         $return = round($bytes / pow(1024,3),2);

  84:         $suffix = 'GB';

  85:     }

  86:     else if($bytes >= pow(2,20))

  87:     {

  88:         $return = round($bytes / pow(1024,2),2);

  89:         $suffix = 'MB';

  90:     }

  91:     else if($bytes >= pow(2,10))

  92:     {

  93:         $return = round($bytes / pow(1024,1),2);

  94:         $suffix = 'KB';

  95:     }

  96:     else

  97:     {

  98:         $return = $bytes;

  99:         $suffix = 'B';

100:     }

101:     return $return." ".$suffix;

102: }

103:

104: /*调用函数,传入test目录下的test.txt文件*/

105: getFilePro('./test/div.html');

106: ?>

结果:

二、目录的操作

目录的操作有:遍历目录、删除、复制、大小统计等

1、遍历目录

   1: /*

   2: *遍历目录

   3: *@param string $dirName 目录名

   4: */

   5: function findDir($dirName)

   6: {

   7:     $num  = 0;  /*统计子文件个数*/

   8:     $dir_handle = opendir($dirName);  /*打开目录*/

   9:     /*输出目录文件*/

  10:     echo '

';

  11:     echo '

.$dirName.'下的文件';

  12:     echo '

;

  13:     echo '

';

  14:

  15:     while($file = readdir($dir_handle))

  16:     {

  17:         $dirFile = $dirName.'/'.$file;

  18:         $bgcolor = $num++%2==0?'#ffffff':'#cccccc';

  19:         echo '

';

  20:         echo '

';

  21:         echo '

';

  22:         echo '

';

  23:         echo '

';

  24:         echo '

';

  25:     }

  26:     echo "

目录'

文件名 文件大小 文件类型 修改时间
'.$file.' '.filesize($dirFile).' '.filetype($dirFile).' '.date('Y/n/t',filemtime($dirFile)).'
";

  27:     closedir($dir_handle);  /*关闭目录*/

  28:     echo "在".$dirName."目录下共有".$num.'个子文件';

  29: }

  30: /*传递当前目录下的test目录*/

  31: findDir('./test');

结果

2、统计目录大小

   1: /*

   2: *统计目录大小

   3: *@param string $dirName 目录名

   4: *@return double

   5: */

   6:

   7: function dirSize($dirName)

   8: {

   9:     $dir_size = 0;

  10:     if($dir_handle = @opendir($dirName))

  11:     {

  12:         while ($fileName = readdir($dir_handle))

  13:         {

  14:              /*排除两个特殊目录*/

  15:             if($fileName != '.' && $fileName != '..')

  16:             {

  17:                 $subFile = $dirName.'/'.$fileName;

  18:                 if(is_file($subFile))

  19:                 {

  20:                     $dir_size += filesize($subFile);

  21:                 }

  22:                 if(is_dir($subFile))

  23:                 {

  24:                     $dir_size += dirSize($subFile);

  25:                 }

  26:             }

  27:         }

  28:         closedir($dir_handle);

  29:         return $dir_size;

  30:     }

  31: }

  32: /*传递当前目录下的test目录*/

  33: $dir_size = dirSize('./test');

  34: echo './test目录文件大小是:'.round($dir_size / pow(1024,1),2).'KB';

结果

3、删除目录

   1: /*

   2: *删除目录

   3: *@param string $dirName 目录名

   4: */

   5: function delDir($dirName)

   6: {

   7:     /*php中的mkdir函数就可以创建目录*/

   8:     if(file_exists($dirName))

   9:     {

  10:         if($dir_handle = @opendir($dirName))

  11:         {

  12:             while ($fileName = readdir($dir_handle))

  13:             {

  14:                  /*排除两个特殊目录*/

  15:                 if($fileName != '.' && $fileName != '..')

  16:                 {

  17:                     $subFile = $dirName.'/'.$fileName;

  18:                     if(is_file($subFile))

  19:                     {

  20:                         unlink($subFile);

  21:                     }

  22:                     if(is_dir($subFile))

  23:                     {

  24:                         delDir($subFile);

  25:                     }

  26:                 }

  27:             }

  28:             closedir($dir_handle);

  29:             rmdir($dirName);

  30:             return $dirName.'目录已经删除';

  31:         }

  32:     }

  33: }

  34: /*传递test目录的副本test1*/

  35: echo delDir('./test1');

删除成功的提示信息

4、复制目录

   1: /*

   2: *复制目录

   3: *@param string $dirSrc 原目录名

   4: *@param string $dirTo 目标目录名

   5: */

   6: function copyDir($dirSrc,$dirTo)

   7: {

   8:     if(is_file($dirTo))

   9:     {

  10:         echo '目标目录不能创建';/*目标不是一个*/

  11:         return;

  12:     }

  13:     if(!file_exists($dirTo))

  14:     {

  15:         /*目录不存在则创建*/

  16:         mkdir($dirTo);

  17:     }

  18:     if($dir_handle = @opendir($dirSrc))

  19:     {

  20:         while ($fileName = readdir($dir_handle))

  21:         {

  22:              /*排除两个特殊目录*/

  23:             if($fileName != '.' && $fileName != '..')

  24:             {

  25:                 $subSrcFile = $dirSrc.'/'.$fileName;

  26:                 $subToFile = $dirTo.'/'.$fileName;

  27:                 if(is_file($subSrcFile))

  28:                 {

  29:                     copy($subSrcFile,$subToFile);

  30:                 }

  31:                 if(is_dir($subSrcFile))

  32:                 {

  33:                     copyDir($subSrcFile,$subToFile);

  34:                 }

  35:             }

  36:         }

  37:         closedir($dir_handle);

  38:         return $dirSrc.'目录已经复制到'.$dirTo.'目录';

  39:     }

  40: }

  41: echo copyDir('./test','../testcopy');

 



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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1662
14
PHP Tutorial
1262
29
C# Tutorial
1234
24
How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

See all articles