0
我想簡單地清空目錄中的所有文件,但是我一直收到file_put_contents中的路徑是目錄的錯誤。目錄中的空文件
//empty the cache
$files = scandir('tmp/whazzup/cache/');
if($files!=false){
foreach($files as $file){
file_put_contents('tmp/whazzup/cache/'.$file, '');
}
}