我在codeigniter中做我的项目,因为我曾经创建新目录来上传我的图像。现在我需要删除我的新目录,因为我已经厌倦了这个编码,
$dir = '/var/www/uploads/chat/'.$input['chat_id'];
system('/bin/rm -rf ' . escapeshellarg($dir));
但它对我不起作用。我从这个链接得到了这个编码http://stackoverflow.com/questions/1296681/php-simplest-way-to-delete-a-folder-including-its-contents
我需要做什么?