目录

PHP basename() 函数

❮ PHP 文件系统参考

示例

从指定路径返回文件名:

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

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

//Show filename, but cut off file extension for ".html" files
echo basename($path,".html");
?>

上面代码的输出将是:

home.html
home


定义和用法

basename() 函数从路径返回文件名。

语法

basename( path, suffix)

参数值

Parameter Description
path Required. Specifies a file path
suffix Optional. A file extension. If the filename has this file extension, the file extension will be cut off


技术细节

返回值: 指定路径的文件名
PHP 版本: 4.0+

❮ PHP 文件系统参考