在这个示例文件夹中,我需要在 move.php 文件中使用 PHP 将 sub 的所有内容移动到上述目录中。
▼ dir
- move.php
▼ sub
- a.txt
- b.txt
运行 move.php 后,文件应如下所示:
▼ dir
- move.php
- a.txt
- b.txt
谢谢。
我会给你一个提示。
php
file_get_contents('file_dir')将文件读入字符串php
file_put_contents('file_dir')创建文件php
unlink('file_dir')函数删除文件php
rmdir()函数。如果您不需要访问文件,您可以使用php
copy($source, $dest)函数将文件从一个目录复制到另一个目录。然后你可以从旧目录中删除它们。
看一下 phpscandir()
函数来扫描您的子目录并将文件从它移动到您的当前目录。