Answers for "php get file extension type"

PHP
16

php get file extension from filename

$ext = pathinfo($filename, PATHINFO_EXTENSION);
Posted by: Guest on October-26-2020
0

php get filename without extension

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

Code answers related to "php get file extension type"

Browse Popular Code Answers by Language