17
PHP, 파일 확장자없이 파일 이름 얻기
이 PHP 코드가 있습니다 : function ShowFileExtension($filepath) { preg_match('/[^?]*/', $filepath, $matches); $string = $matches[0]; $pattern = preg_split('/\./', $string, -1, PREG_SPLIT_OFFSET_CAPTURE); if(count($pattern) > 1) { $filenamepart = $pattern[count($pattern)-1][0]; preg_match('/[^?]*/', $filenamepart, $matches); return strtolower($matches[0]); } } 파일 이름이 my.zip이면이 함수는를 반환합니다 .zip. 나는 반대로하고 싶습니다 my. 확장없이 함수가 반환되기를 원합니다 . 파일은 …