정규식 1차 도메인만 추출
로빈아빠
본문
<?
$domain="www.naum.kr";
preg_match('/[^\.]+\.([^\.]{4}|[^\.]{3}|(co|or|pe|ac)\.[^\.]{2}|[^\.]{2})$/i', $domain, $matches);
print_r($matches);
?>
결과 :
Array ( [0] => naum.kr [1] => kr )
댓글목록
등록된 댓글이 없습니다.