Answers for "php remove file extension from s"

PHP
1

php regex remove file extension

$withoutExt = preg_replace('/\\.[^.\\s]{3,4}$/', '', $filename);

This matches a dot followed by three or four characters which are not a dot or a space.
Posted by: Guest on June-19-2020

Code answers related to "php remove file extension from s"

Browse Popular Code Answers by Language