PHP basename() 函数

取出目录路径中的文件名字

code

<?php
$path = "/testweb/home.php";

//Show filename with file extension
echo basename($path) ."<br/>";

//Show filename without file extension
echo basename($path,".php");
?>

输出

home.php
home

参考:

https://www.runoob.com/php/func-filesystem-basename.html

原文地址:https://www.cnblogs.com/sea-stream/p/11279888.html