php remove file extension code example
Example 1: php remove file
if(file_exists($file)) {
unlink($file);
}
Example 2: 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.