ฉันมีรหัส 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
โดยไม่มีนามสกุล
ไฟล์เป็นเพียงสตริงในตัวแปร