Answers for "php take all the name files witjout extension"

PHP
0

php get filename without extension

// Here is a quick way of fetching only the filename (without extension) regardless of what suffix the file has.

// your file
$file = 'image.jpg';
$info = pathinfo($file);
// Before PHP 5.2
$file_name =  basename($file, '.'.$info['extension']);
// After PHP 5.2
$file_name =  $info['filename'];
Posted by: Guest on October-07-2020
0

php get filename without extension

pathinfo($path, PATHINFO_FILENAME);
Posted by: Guest on January-10-2022

Code answers related to "php take all the name files witjout extension"

Browse Popular Code Answers by Language