Source Code:
(back to article)
<?php $fileName = 'banner.jpg'; $fileNameParts = explode('.', $fileName); $ext = end($fileNameParts); echo $ext; ?>
Result:
Report an issue