從PHP 中的路徑字串存取檔案名稱
在PHP 處理檔案時,通常需要從完整檔案中擷取檔案名稱小路。這就是basename()方法派上用場的地方。
使用basename()檢索檔案名稱
basename()方法將檔案路徑作為參數並傳回單獨的檔案名稱部分。考慮以下範例:
$path = "F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map"; $filename = basename($path);
在這種情況下,$filename 變數將被指派字串「Output.map」。 basename() 方法有效地剝離了目錄路徑部分,只留下檔案名稱。
剝離檔案副檔名
此外,您可以使用 basename() 方法從檔案路徑中刪除檔案副檔名。為此,請向該方法提供第二個參數,指示要刪除的副檔名。
例如,如果您想從上面的範例中提取不帶“.map”副檔名的檔名,您可以使用:
$path = "F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map"; $filename = basename($path, ".map"); // Remove the ".map" extension
$filename 變數現在將設定為“輸出」。
以上是如何在 PHP 中從檔案路徑中提取檔案名稱?的詳細內容。更多資訊請關注PHP中文網其他相關文章!