search
HomeBackend DevelopmentPHP TutorialPHP folder/file directory operation function_PHP tutorial
PHP folder/file directory operation function_PHP tutorialJul 20, 2016 am 10:59 AM
phpone timefunctionclassmateexistSummarizeoperatedocumentfolderarticleuseTable of contents

This article will give you a summary of some commonly used folder/file directory operation functions in PHP. These are just a brief introduction to some basic methods. I hope it will be helpful to beginners. ​

php folder operation function


string basename ( string path [, string suffix] )

Given a string containing the full path to a file, this function returns the base file name. If the filename ends with suffix, this part will also be removed.

In Windows, both slash (/) and backslash () can be used as directory separators. In other circumstances it is a slash (/).

string dirname ( string path )

Given a string containing the full path to a file, this function returns the directory name after removing the file name.

In Windows, both slash (/) and backslash () can be used as directory separators. In other circumstances it is a slash (/).

array pathinfo ( string path [, int options] )

pathinfo() returns an associative array containing path information. Includes the following array elements: dirname, basename, and extension.

You can specify which units to return through the parameter options. They include: PATHINFO_DIRNAME, PATHINFO_BASENAME and PATHINFO_EXTENSION. The default is to return all units.

string realpath ( string path )

realpath() expands all symbolic links and handles ‘/./’, ‘/../’ and redundant ‘/’ in the input path and returns the normalized absolute path name. There are no symbolic links, '/./' or '/../' components in the returned path.

realpath() returns FALSE when it fails, for example if the file does not exist. On BSD systems, if path simply does not exist, PHP will not return FALSE like other systems.


bool is_dir (string filename)

Returns TRUE if the filename exists and is a directory. If filename is a relative path, its relative path is checked against the current working directory.

Note: The result of this function will be cached. See clearstatcache() for more information.


resource opendir ( string path [, resource context] )

Opens a directory handle that can be used in subsequent closedir(), readdir() and rewinddir() calls.


string readdir (resource dir_handle)

Returns the file name of the next file in the directory. File names are returned in order in the file system.


void closedir (resource dir_handle)

Close the directory stream specified by dir_handle. The stream must have been previously opened by opendir().


void rewinddir ( resource dir_handle )

Reset the directory stream specified by dir_handle to the beginning of the directory.


array glob ( string pattern [, int flags] )

The glob() function finds all file paths matching pattern according to the rules used by the libc glob() function, similar to the rules used by general shells. No abbreviation expansion or parameter substitution is performed.

Returns an array containing matching files/directories. Returns FALSE if an error occurs.

Valid tags are:

GLOB_MARK - Add a slash to each returned item
GLOB_NOSORT - Return files in their original order of appearance in the directory (not sorted)
GLOB_NOCHECK - Returns the pattern to search for if no files match
GLOB_NOESCAPE - backslash unescaped metacharacter
GLOB_BRACE - expands {a,b,c} to match ‘a’, ‘b’ or ‘c’
GLOB_ONLYDIR - Return only directory entries matching pattern

Note: Before PHP 4.3.3, GLOB_ONLYDIR is not available on Windows or other systems that do not use the GNU C library.

GLOB_ERR - Stop and read error messages (such as unreadable directories), ignore all errors by default

Note: GLOB_ERR was added in PHP 5.1.

php file directory operations


New file

1. First determine the content to be written to the file

$content = 'Hello';

2. Open this file (the system will automatically create this empty file)

//Assume that the newly created file is called file.txt and is in the upper-level directory. w means ‘write file’, which is used below $fp to point to an open file.

$fp = fopen('../file.txt', 'w');

3. Write the content string to the file

//$fp tells the system the file to be written, and the content to be written is $content

fwrite($fp, $content);

4. Close the file

fclose($fp);

Note: PHP5 provides a more convenient function file_put_contents. The above 4 steps can be completed like this:

$content = 'Hello';

file_put_contents('file.txt',$content);

Delete files

//Delete the file abc.txt in the arch directory in the current directory

unlink('arch/abc.txt');

Note: The system will return the operation result. TRUE if successful, FALSE if failed. You can use a variable to receive it to know whether the deletion is successful:

$deleteResult = unlink('arch/abc.txt');

Get file content

//Assume that the target file name obtained is file.txt and is in the upper-level directory. The obtained content is put into $content.

$content = file_get_contents('../file.txt');

Modify file content

The operation method is basically the same as creating new content

Rename file or directory

//Rename file 1.gif under subdirectory a in the current directory to 2.gif.

rename('/a/1.gif', '/a/2.gif');

Note: The same goes for directories. The system will return the operation result, TRUE if successful, and FALSE if failed. You can use a variable to receive it to know whether the rename is successful.

$renameResult = rename('/a/1.gif', '/a/2.gif');

If you want to move a file or directory, just set the renamed path to the new path:

//Move the file 1.gif under subdirectory a in the current directory to subdirectory b under the current directory, and rename it to 2.gif.

rename('/a/1.gif', '/b/2.gif');

However, please note that if directory b does not exist, the move will fail.

Copy file

//Copy file 1.gif in subdirectory a of the current directory to subdirectory b of the current directory and name it 2.gif.

copy('/a/1.gif', '/b/1.gif');

Note: This operation cannot be performed on the directory.

If the target file (/b/1.gif above) already exists, the original file will be overwritten.

The system will return the operation result, TRUE if successful, and FALSE if failed. You can use a variable to receive it to know whether the copy was successful.

$copyResult = copy('/a/1.gif', '/b/1.gif');

Move files or directories

The operation method is the same as renaming

Whether the file or directory exists

//Check whether the file logo.jpg in the upper-level directory exists.

$existResult = file_exists('../logo.jpg');

Description: The system returns true if the file exists, otherwise it returns false. The same operation can be done with directories.

Get file size

//Get the size of the file logo.png in the upper-level directory.

$size = filesize('../logo.png');

Note: The system will return a number indicating the size of the file in bytes.

Create new directory

//Create a new directory b below directory a in the current directory.

mkdir('/a/b');

Note: The system will return the operation result. TRUE if successful, FALSE if failed. You can use variables to receive it to know whether the new creation is successful:

$mkResult = mkdir('/a/b');

Delete directory

//Delete subdirectory b below directory a in the current directory.

rmdir('/a/b');

Note: Only non-empty directories can be deleted, otherwise the subdirectories and files under the directory must be deleted first, and then the total directory

The system will return the operation result, TRUE if successful, and FALSE if failed. You can use a variable to receive it to know whether the deletion is successful:

$deleteResult = rmdir('/a/b');

Get all file names in the directory

1. First open the directory you want to operate and use a variable to point to it

//Open the subdirectory common under the directory pic in the current directory.

$handler = opendir('pic/common');

2. Read all files in the directory in a loop

/* Among them, $filename = readdir($handler) assigns the read file name to $filename every time it loops. In order not to get stuck in an infinite loop, $filename !== false is also required. Be sure to use !==, because if a file name is called '0', or something is considered by the system to represent false, using != will stop the loop*/

while( ($filename = readdir($handler)) !== false ) {

3. There will be two files in the directory, named '.' and '..', do not operate them

if($filename != "." && $filename != "..") {

4. Process

//Here we simply use echo to output the file name

echo $filename;

}

}

5. Close the directory

closedir($handler);

Whether the object is a directory

//Check whether the target object logo.jpg in the upper-level directory is a directory.

$checkResult = is_dir('../logo.jpg');

Description: Returns true if the target object is a directory system, otherwise returns false. Of course $checkResult in the above example is false.

Whether the object is a file

//Check whether the target object logo.jpg in the upper-level directory is a file.

$checkResult = is_file('../logo.jpg');

Note: If the target object is a file, the system returns true, otherwise it returns false. Of course $checkResult in the above example is true.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445605.htmlTechArticleThis article will give you a summary of some commonly used folder/file directory operation functions in php. These I just briefly introduce some basic methods, I hope it will be helpful to beginners...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.