확장자를 구별해서 이미지 또는 다른 종류로 분류할 수 있어요.

<?php
$text = "http://url/default.png";
$ext = substr(strrchr($text,"."),1); // 확장자앞 .을 제거
$ext = strtolower($ext); // 소문자 변환
if( $ext == "jpeg" || $ext == "jpg" || $ext == "png" ) {
    echo $ext; // png 추출
}
?>