一尘不染

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

php

例如,我如何获得 Output.map

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

用PHP?


阅读 326

收藏
2020-05-26

共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"
?>
2020-05-26