PHP 中的 dirname() 函数

phpprogrammingserver side programming

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
"; ?>

输出

Name of the directory: D:/amit

让我们看另一个例子。

示例

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

输出

Name of the directory: /amit

相关文章