Detailed explanation of the usage of php dirname() function to obtain file information

怪我咯
Release: 2023-03-07 21:16:02
Original
2416 people have browsed it

What is the function of php dirname() function?

php The dirname() function returns the directory part of the file path. It gives a string containing the full path to a file and returns the directory name minus the filename. The syntax is as follows

Syntax:

string dirname ( string $path )
Copy after login

Parameter details:

The parameter path is a path, and this path is the path we need to check.

PS: In Windows, both slash (/) and backslash (\) can be used as directory separators. In other circumstances it is a slash (/).

The return value of php dirname() function

Returns the parent directory of path. If there is no slash in path , a dot ('.') is returned, indicating the current directory. Otherwise, the string returned is the string after removing the /component at the end of path (the last slash and the following part).

Example

Example 1

<?php

echo dirname("c:/testweb/home.php") . "<br />";

echo dirname("/testweb/home.php");

?>
Copy after login

Code running result:

Detailed explanation of the usage of php dirname() function to obtain file information

Example 2

Assume that there is a file path under the path D:/WWW/images/1.jpg: We use the php dirname() function to get the file In the directory part, the code is as follows:

<?php
$apth=&#39;D:/WWW/images/1.jpg&#39;;
echo dirname($apth) . "<br />";

echo dirname("/WWW/images/home.php");
?>
Copy after login

The code running result is as shown below

Detailed explanation of the usage of php dirname() function to obtain file information

##[Recommended related articles]:

Detailed explanation of php pathinfo() function to obtain file path information

The above is the detailed content of Detailed explanation of the usage of php dirname() function to obtain file information. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!