PHP中的dirname()函数

dirname()函数从指定路径返回目录名称。如果路径没有斜杠,则返回一个点('。')。这指示当前目录。

语法

dirname(file_path)

参数

  • file_path-要指定的文件。

返回

dirname()函数返回目录的路径。

示例

<?php
   $file_path = "D:/amit/java.docx";
   $dir_name = dirname($file_path);
   echo "Name of the directory: $dir_name\n";
?>

输出结果

Name of the directory: D:/amit

让我们来看另一个例子。

示例

<?php
   $file_path = "/amit/java.docx";
   $dir_name = dirname($file_path);
   echo "Name of the directory: $dir_name\n";
?>

输出结果

Name of the directory: /amit