Answers for "how to find path of a file using php"

PHP
0

get file name from file path in php

<?php
$path_parts = pathinfo('/www/htdocs/inc/lib.inc.php');

echo $path_parts['dirname'], "\n";
echo $path_parts['basename'], "\n";
echo $path_parts['extension'], "\n";
echo $path_parts['filename'], "\n"; // since PHP 5.2.0
?>
Posted by: Guest on July-19-2021
0

php include file path

setlocale(LC_ALL,'C.UTF-8');
Posted by: Guest on October-29-2021

Code answers related to "how to find path of a file using php"

Browse Popular Code Answers by Language