$url = "크롤링 하고싶은 URL"; $snoopy = new snoopy;$snoopy->fetch("$url");$txt = $snoopy->results;//print_r($txt); preg_match( '@ //해당 사이트 charset 이 euc-kr 이면 utf-8로 변환 해준다.if($matches[3] == "euc-kr" || $matches[3] == "EUC-KR" ){$txt = iconv("euc-kr", "utf-8", $txt);} preg_match( '##siU', $txt, $charset);preg_match("/(.*)/siU", $txt, $title);preg_match( '##siU', $txt, $ogTitle);preg_match( '##siU', $tx..