Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP pathinfo() Function.
The PHP pathinfo() function returns an array containing information about the path. If the optional parameter is not passed, then an associative array containing all the elements is returned back; dirname, basename, extension (if any), and filename.
The PHP pathinfo() function returns an array containing information about the path. If the optional parameter is not passed, then an associative array containing all the elements is returned back; dirname, basename, extension (if any), and filename.
Syntax
Following below is the syntax to use this function -
mixed pathinfo ( string $path [, int $options = PATHINFO_DIRNAME | PATHINFO_BASENAME | PATHINFO_EXTENSION | PATHINFO_FILENAME ] )
Return Value
This function returns information about the path: either an associative array or a string, depending on options.
Example1
Try out the below example -
<?php print_r(pathinfo("/PhpProject/simple.txt")); ?>
Output
When the above code is executed, it will produce the following result -
Array ( [dirname] => /PhpProject1 [basename] => simple.txt [extension] => txt [filename] => simple )
Example2
Try out the below example -
<?php print_r(pathinfo("/PhpProject/simple.txt", PATHINFO_BASENAME)); ?>
Output
When the above code is executed, it will produce the following result -
simple.txt
Alright guys! This is where we are going to be rounding up for this tutorial post. In our next tutorial, we are going to be discussing about the PHP pclose() Function.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.