2013-06-14 3 views

답변

2

에서 메타를 얻기 위해 어떻게 개인적으로 오히려 자바 스크립트 이상이 사용하는 PHP 가겠어요 외부 사이트 및 제목의 페이지에서 메타를 얻을하는 방법. 자바 스크립트가 정말로 필요한 경우, PHP 페이지를 AJAX 할 수 있습니다. 나는 "http://sourceforge.net/projects/simplehtmldom/" 다음이의 라인을 따라 뭔가 일이 PHP 라이브러리를 사용하여 시작합니다 :

// Create DOM from URL or file 
$url = 'http://www.example.com/'; 
$html = file_get_html($url); 

// Find all meta tags 
foreach($html->find('meta') as $element){ 
     $temp['name'] = $element->name; 
     $temp['content'] = $element->content; 
     $meta[] = $temp; 
} 
//Run checks on the array of meta tags or whatever you are trying to acheive 

내가 쓰러 지하고 나는 이것을 확인하지 않은,하지만 난이 라이브러리의이 질문과 생각을 보았다 곧! 이

편집 테스트 한 후 도움이되기를 바랍니다 : 을 연극의 조금 후,이 코드 :

<?php 
include('simple_html_dom.php'); 
// Create DOM from URL or file 
$url = 'http://www.amazon.com/'; 
$html = file_get_html($url); 

// Find all meta tags 
foreach($html->find('meta') as $element){ 
     $temp['name'] = $element->name; 
     $temp['content'] = $element->content; 
     $temp['charset'] = $element->charset; 
     $meta[] = $temp; 
     $temp = ""; 
} 
print_r($meta); 
?> 

출력 :

Array 
(
    [0] => Array 
     (
      [name] => 
      [content] => on 
      [charset] => 
     ) 

    [1] => Array 
     (
      [name] => 
      [content] => text/html; charset=iso-8859-1 
      [charset] => 
     ) 

    [2] => Array 
     (
      [name] => description 
      [content] => Online shopping from the earth&#39;s biggest selection of books, magazines, music, DVDs, videos, electronics, computers, software, apparel &amp; accessories, shoes, jewelry, tools &amp; hardware, housewares, furniture, sporting goods, beauty &amp; personal care, broadband &amp; dsl, gourmet food &amp; just about anything else. 
      [charset] => 
     ) 

    [3] => Array 
     (
      [name] => keywords 
      [content] => Amazon, Amazon.com, Books, Online Shopping, Book Store, Magazine, Subscription, Music, CDs, DVDs, Videos, Electronics, Video Games, Computers, Cell Phones, Toys, Games, Apparel, Accessories, Shoes, Jewelry, Watches, Office Products, Sports &amp; Outdoors, Sporting Goods, Baby Products, Health, Personal Care, Beauty, Home, Garden, Bed &amp; Bath, Furniture, Tools, Hardware, Vacuums, Outdoor Living, Automotive Parts, Pet Supplies, Broadband, DSL 
      [charset] => 
     ) 

    [4] => Array 
     (
      [name] => google-site-verification 
      [content] => 9vpzZueNucS8hPqoGpZ5r10Nr2_sLMRG3AnDtNlucc4 
      [charset] => 
     ) 

) 

거의 모든 것으로 나타나는!