小编典典

如何使用 PHP 从完整路径中获取文件名?

all

例如,我如何获得Output.map

F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map

用PHP?


阅读 66

收藏
2022-05-16

共1个答案

小编典典

你正在寻找basename.

PHP手册中的示例:

<?php
$path = "/home/httpd/html/index.php";
$file = basename($path);         // $file is set to "index.php"
$file = basename($path, ".php"); // $file is set to "index"
?>
2022-05-16