Home > Article > Backend Development > How to use file and directory handling functions in PHP?
How to use file and directory processing functions in PHP?
In web development, working with files and directories is a common task. PHP provides a series of file and directory processing functions, allowing developers to easily operate files and directories.
First, let's look at how to create, delete and write files.
$file = 'test.txt'; $content = 'Hello World!'; // 将内容写入文件 file_put_contents($file, $content);
The above code will create a file named test.txt in the current directory and write the content 'Hello World!' into it.
$file = 'test.txt'; // 删除文件 unlink($file);
The above code will delete the file named test.txt in the current directory.
$file = 'test.txt'; $content = 'Hello World Again!'; // 将内容写入已存在的文件 file_put_contents($file, $content);
The above code will write the content 'Hello World Again!' to the existing test.txt file.
Next, let’s take a look at how to create, delete and traverse directories.
$dir = 'test'; // 创建目录 mkdir($dir);
The above code will create a directory named test in the current directory.
$dir = 'test'; // 删除目录 rmdir($dir);
The above code will delete the directory named test in the current directory.
$dir = 'test'; // 获取目录列表 $files = scandir($dir); foreach($files as $file){ echo $file . "<br>"; }
The above code will traverse the test directory under the current directory and print out the list of files and subdirectories in it.
To sum up, PHP provides a wealth of file and directory processing functions, allowing developers to easily create, delete and traverse files and directories. By mastering the use of these functions, developers can more efficiently complete file and directory processing tasks in web development.
The above is the detailed content of How to use file and directory handling functions in PHP?. For more information, please follow other related articles on the PHP Chinese website!