PHP:從完整路徑中提取檔案名稱
從完整檔案路徑中單獨取得檔案名稱是處理檔案時的一項常見任務系統。在 PHP 中,這可以使用 basename() 函數來完成。
範例:
考慮下列檔案路徑:
F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map
目標:從檔案中擷取檔案名稱「「put」 .map”
解決方案:
basename() 函數將檔案路徑作為輸入並傳回檔案名稱。以下程式碼片段示範了其用法:
$path = "F:/Program Files/SSH Communications Security/SSH Secure Shell/Output.map"; $filename = basename($path); echo $filename; // Output: Output.map
附加說明:
$filename = basename($path, ".map"); // Output: Output
以上是如何在 PHP 中從完整檔案路徑中提取檔案名稱?的詳細內容。更多資訊請關注PHP中文網其他相關文章!