Merhaba arkadaşlar bu kodlarda ne yazsam .cache uzantılarını siler ? şimdiden teşekkürler
<?
$ftp_user_name ="******";
$ftp_user_pass ="******";
$ftp_host ="******";
define("_ROOT","public_html/");
$ftp_id = ftp_connect($ftp_host);
$ftp_baglan = ftp_login($ftp_id, $ftp_user_name, $ftp_user_pass);
if ((!$ftp_id) || (!$ftp_baglan)) {
die("FTP BAGLANTISI SAĞLANAMIYOR");
}
if(!ftp_pasv($ftp_id,TRUE)){
Die("PASV moduna geçilemedi");
}
$dosyaad= 'dosyaadi.uzanti';
ftp_delete($ftp_id, 'public_html/' . $dosyaad);
echo "SİLİNDİ";
?>