Answers for "how to get filename in directory 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 get files in folder

$files = array_diff(scandir($path), array('.', '..'));
Posted by: Guest on August-27-2021

Code answers related to "how to get filename in directory php"

Browse Popular Code Answers by Language