<Komple PHP Dosya Sistemi Referans
Tanımı ve Kullanımı
is_uploaded_file() Belirtilen dosya HTTP POST yoluyla karşıya olmadığını kontrol eder.
dosya HTTP POST üzerinden yüklenen, bu işlevi DOĞRU verir.
Sözdizimi
is_uploaded_file(file)
Parametre | Açıklama |
---|---|
file | Gereklidir. kontrol etmek dosyayı belirtir |
İpuçları ve Notlar
Note: Bu işlevin sonucu önbelleğe alınır. Kullanım clearstatcache() önbelleği temizlemek için.
Örnek
<?php
$file = "test.txt";
if(is_uploaded_file($file))
{
echo ("$file is uploaded via HTTP POST");
}
else
{
echo ("$file is not uploaded via HTTP POST");
}
?>
kodun çıktısı yukarıda olabilir:
test.txt is not uploaded via HTTP POST
<Komple PHP Dosya Sistemi Referans