<?php
function
GetFileExt
(
$strFileName
)
{
return
strtolower
(
substr
(
strrchr
(
$strFileName
,
'.'
)
,
1
)
)
;
}
?>