<Komple PHP Dosya Sistemi Referans
Tanımı ve Kullanımı
basename() işlevi, bir yoldan dosya adını verir.
Sözdizimi
basename(path,suffix)
Parametre | Açıklama |
---|---|
path | Gereklidir. kontrol etmek yolunu belirtir |
suffix | İsteğe bağlı. Bir dosya uzantısını belirtir. Dosya adı bu dosya uzantısı varsa, dosya uzantısı gösterilmez |
Örnek
<?php
$path = "/testweb/home.php";
//Show filename with file extension
echo basename($path) ."<br/>";
//Show filename without file extension
echo basename($path,".php");
?>
kodun çıktısını göreceğiz:
home.php
home
<Komple PHP Dosya Sistemi Referans