Tools, FAQ, Tutorials:
Splitting a File Path Name into Parts in PHP
How To Break a File Path Name into Parts in PHP?
✍: FYIcenter.com
If you have a file name, and want to get different parts of the file name, you can use the pathinfo() function. It breaks the file name into 3 parts: directory name, file base name and file extension; and returns them in an array. Here is a PHP script example on how to use pathinfo():
<?php $pathName = "/temp/download/todo.txt"; $parts = pathinfo($pathName); print_r($parts); print("\n"); ?>
This script will print:
Array ( [dirname] => /temp/download [basename] => todo.txt [extension] => txt )
⇐ Retrieving Directory Name from File Path Name in PHP
2016-11-17, 4375🔥, 0💬
Popular Posts:
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
What is the "__init__()" class method? The "__init__()" class method is a special method that will b...
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...