Tools, FAQ, Tutorials:
Retrieving Directory Name from File Path Name in PHP
How To Get the Directory Name out of a File Path Name in PHP?
✍: FYIcenter.com
If you have the full path name of a file, and want to get the directory name portion of the path name, you can use the dirname() function. It breaks the full path name at the last directory path delimiter (/) or (\), and returns the first portion as the directory name. Here is a PHP script example on how to use dirname():
<?php
$pathName = "/temp/download/todo.txt";
$dirName = dirname($pathName);
print("File full path name: $pathName\n");
print("File directory name: $dirName\n");
print("\n");
?>
This script will print:
File full path name: /temp/download/todo.txt File directory name: /temp/download
⇒ Splitting a File Path Name into Parts in PHP
⇐ Reading Directory Entries in PHP
2016-11-20, ∼2415🔥, 0💬
Popular Posts:
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to ...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If ...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...