PHP 中的 basename() 函数

phpprogrammingserver side programming

basename() 函数获取路径的文件名部分。文件路径设置为参数。

语法

basename(file_path, suffix)

参数

  • file_path − 设置要检查的文件或目录的路径。必需。

  • suffix − 设置文件的扩展名。可选。

返回

basename() 函数返回文件的基本名称。

示例

以下是检查文件"new.php"的示例并返回带有扩展名的基本名称,因为我们添加了后缀参数。

<?php
   $file_path = "/backup/myfiles/new.php";
   // 显示带扩展名的文件名
   echo basename($file_path);
?>

输出

new.php

示例

让我们看另一个检查文件并显示不带扩展名的基本名称的示例。

<?php
   $file_path = "/backup/myfiles/new.php";
   // displays name of the file without extension
   echo basename($file_path,".php");
?>

输出

new

相关文章