확장자 뒷부터 자르기
이미지가 없습니다.
관련글▶[열람중]확장자 뒷부터 자르기 실시간 핫 잇슈
$pattern = '/\.(jpg|jpeg|png|gif)(\?.*)?$/i';
// Replace the matched pattern, keeping only the file name with extension
$output = preg_replace($pattern, '.$1', $input);