테스트 사이트 - 개발 중인 베타 버전입니다

외부 url 정보 가져오기 문의 드립니다. 채택완료

채군 7년 전 조회 2,140

외부 사이트(url)  title / description / keywords

정보를 가져 오는 소스를 발견해서 한번 써 보려 하는데....

한글이 깨져서 나오고 있습니다....ㅠ.ㅠ

 

<?

function file_get_contents_curl($url)
{
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
   

 


    $data = curl_exec($ch);

    curl_close($ch);

    return $data;
}

$html = file_get_contents_curl("http://www.naver.com/" rel="nofollow" target="_blank">http://www.naver.com/" ) ;

//parsing begins here:
$doc = new DOMDocument();
@$doc->loadHTML($html);
$nodes = $doc->getElementsByTagName('title');

//get and display what you need:
$title = $nodes->item(0)->nodeValue;

$metas = $doc->getElementsByTagName('meta');

for ($i = 0; $i < $metas->length; $i++)
{
    $meta = $metas->item($i);
    if($meta->getAttribute('name') == 'description')
        $description = $meta->getAttribute('content');
    if($meta->getAttribute('name') == 'keywords')
        $keywords = $meta->getAttribute('content');
}

 

?>

<?php

echo "Title: $title". '<br/><br/>';
echo "Description: $description". '<br/><br/>';
echo "Keywords: $keywords";

?>

 

 

 

결과물

 

Title: NAVER

Description: 챘혙짚챙혶쨈챘짼혙 챘짤혬챙혶쨍챙혰혨챙혙혵 챘혢짚챙혯혩챠혮혵 챙혻혮챘쨀쨈챙혲? 챙혵혻챙혳짤챠혮혵 챙쨩짢챠혚혨챙쨍혻챘짜쩌 챘짠혣챘혗혱 챘쨀쨈챙혙쨍챙혳혬

Keywords:

 

이런식으로 한글이....

혹시 어디를 수정 해야 하는지 아시는분 있으세요ㅠ.ㅠ

댓글을 작성하려면 로그인이 필요합니다.

답변 3개

채택된 답변
+20 포인트

그냥

echo "Title: $title". '<br/><br/>';

 

위 소스 위쪽에 제가 드린 소스 넣어보시면 될거에요

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

로빈아빠

네이버니까 당연히 utf-8 로 가지고 올텐데요..

그냥 브라우즈가 euc-kr로 보여지는것 아닐까요?  부라우즈 인코딩을 다르게하거나 다른 브라우로 보시거나

크롬에서는 이렇게 보입니다.

^^

로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

채군
7년 전
ㅠ.ㅠ 호스팅 문제로 확인 되었습니다ㅠ.ㅠ도움 주셔서 감사 합니다~~

댓글을 작성하려면 로그인이 필요합니다.

$charSet = mb_check_encoding($description, "EUC-KR"); 
if($charSet){
       $description = iconv("EUC-KR", "UTF-8", $description);
}

 

위 소스로 description을 변경해보시고, 안되시면 EUC-KR과 UTF-8을 반대로 적용해보세요~

로그인 후 평가할 수 있습니다

답변에 대한 댓글 2개

채군
7년 전
description 어부분분을 어떻게 수정해야 할찌... 잘 몰라서,,,,
조금만더 도와 주세요~~^.^
채군
7년 전
ㅠ.ㅠ 호스팅 문제로 확인 되었습니다ㅠ.ㅠ 도움 주셔서 감사 합니다~~

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인