basename()函數(shù)可返回路徑中的文件名部分。
string basename ( string path [, string suffix] )
它給出了一個包含文件路徑的字符串,并且此函數(shù)返回文件的基本名稱。如果文件名以后綴結(jié)尾,也可以將其截斷。
<?php $path = "/PhpProject/index.php"; $file = basename($path); // $file 設置為 "index.php" echo $file . "\n"; $file = basename($path, ".php"); // $file 設置為 "index" echo $file; ?>
輸出結(jié)果
index.php index