PHP:从完整路径中提取文件名
从完整文件路径中单独获取文件名是处理文件时的一项常见任务系统。在 PHP 中,这可以使用 basename() 函数来完成。
示例:
考虑以下文件路径:
F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map
目标:从文件中提取文件名“Output.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中文网其他相关文章!