取出目录路径中的文件名字
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