在這個示例文件夾中,我需要使用move.php文件中的PHP將sub的所有內容移動到上述目錄中。將文件夾內容打開到上面的目錄
▼ dir
- move.php
▼ sub
- a.txt
- b.txt
move.php運行後,這些文件應該是這樣的:
▼ dir
- move.php
- a.txt
- b.txt
感謝。
在這個示例文件夾中,我需要使用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)功能將文件從一個目錄複製到另一個。然後你可以從舊目錄中刪除它們。
感謝您的幫助,我現在意識到這是一個多步驟的問題 –
看看php scandir()
函數來掃描您的子目錄並將文件從其中移動到當前目錄。
那麼......你試過了什麼? – orlp