消えないファイルをコマンドで消す

ファイルを消す

<?php
$dir = "./images/";
system("rm -rf license.txt");
echo "OK";
?>

フォルダを消す

<?php
$dir = "./images/";
system("rm -rf {$dir}");
echo "OK";
?>