中山php|最優(yōu)網絡 :中山做網站 中山php建站
最優(yōu)良人
Posts Tagged With: unlink
PHP刪除指定文件夾所有文件的方法
2012/04/06 at 09:23 » Comments (12)
以下代碼實現刪除指定文件夾所有文件 $cacheDir = '../cache/runtime'; $dh = opendir($cacheDir); while ( $file = readdir($dh) ) { if (($file == '.') || ($file == '..')) { continue; } if (file_exists( $cacheDir . '/' .$file)) { if (!unlink($cacheDir . '/' ...more »