basename() 函數傳迴路徑中的檔案名稱部分。
basename(path,suffix)
參數 | 描述 |
---|---|
path | 必需。規定要檢查的路徑。 |
suffix | 可選。規定文件副檔名。如果檔案有名有檔案副檔名,將不會顯示這個副檔名。 |
<?php$path = "/testweb/home.php";//Show filename with file extensionecho basename($path) ."<br/>";//Show filename without file extensionecho basename($path,".php ");?>
上面的程式碼將輸出:
home.phphome