|
|
|
รบกวนดูโค้ดนี้หน่อยคะ ^_^ เปนเกี่ยวประวัติเวปไซต์ search engine |
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<?
function getUrlData($url)
{
$result = false;
$contents = getUrlContents($url);
if (isset($contents) && is_string($contents))
{
$title = null;
$metaTags = null;
preg_match('/<title>([^>]*)<\/title>/si', $contents, $match );
if (isset($match) && is_array($match) && count($match) > 0)
{
$title = strip_tags($match[1]);
}
preg_match_all('/<[\s]*meta[\s]*name="?' . '([^>"]*)"?[\s]*' .'[lang="]*[^>"]*["]*'.'[\s]*content="?([^>"]*)"?[\s]*[\/]?[\s]*>/si', $contents, $match);
if (isset($match) && is_array($match) && count($match) == 3)
{
$originals = $match[0];
$names = $match[1];
$values = $match[2];
if (count($originals) == count($names) && count($names) == count($values))
{
$metaTags = array();
for ($i=0, $limiti=count($names); $i < $limiti; $i++)
{
$metaname=strtolower($names[$i]);
$metaname=str_replace("'",'',$metaname);
$metaname=str_replace("/",'',$metaname);
$metaTags[$metaname] = array (
'html' => htmlentities($originals[$i]),
'value' => $values[$i]
);
}
}
}
if(sizeof($metaTags)==0) {
preg_match_all('/<[\s]*meta[\s]*content="?' . '([^>"]*)"?[\s]*' .'[lang="]*[^>"]*["]*'.'[\s]*name="?([^>"]*)"?[\s]*[\/]?[\s]*>/si', $contents, $match);
if (isset($match) && is_array($match) && count($match) == 3)
{
$originals = $match[0];
$names = $match[2];
$values = $match[1];
if (count($originals) == count($names) && count($names) == count($values))
{
$metaTags = array();
for ($i=0, $limiti=count($names); $i < $limiti; $i++)
{
$metaname=strtolower($names[$i]);
$metaname=str_replace("'",'',$metaname);
$metaname=str_replace("/",'',$metaname);
$metaTags[$metaname] = array (
'html' => htmlentities($originals[$i]),
'value' => $values[$i]
);
}
}
}
}
$result = array (
'title' => $title,
'metaTags' => $metaTags
);
}
return $result;
}
function getUrlContents($url, $maximumRedirections = null, $currentRedirection = 0)
{
$result = false;
$contents = file_get_contents($url);
if (isset($contents) && is_string($contents))
{
preg_match_all('/<[\s]*meta[\s]*http-equiv="?REFRESH"?' . '[\s]*content="?[0-9]*;[\s]*URL[\s]*=[\s]*([^>"]*)"?' . '[\s]*[\/]?[\s]*>/si', $contents, $match);
if (isset($match) && is_array($match) && count($match) == 2 && count($match[1]) == 1)
{
if (!isset($maximumRedirections) || $currentRedirection < $maximumRedirections)
{
return getUrlContents($match[1][0], $maximumRedirections, ++$currentRedirection);
}
$result = false;
}
else
{
$result = $contents;
}
}
return $contents;
}
//Usage
$result = getUrlData("http://teenee.com");
if($result['title']=="") {
$title="No Data Available";
} else {
$title=$result['title'];
}
if($result['metaTags']['description']['value']=="") {
$description="No Data Available";
} else {
$description=$result['metaTags']['description']['value'];
}
if($result['metaTags']['keywords']['value']=="") {
$keywords="No Data Available";
} else {
$keywords=$result['metaTags']['keywords']['value'];
}
echo "title: " . $title . "<br>";
echo "description: " . $description . "<br>";
echo "keywords: " . $keywords . "<br>";
?>
</head>
</html>
Output
title: TeeNee.com : ทันทุกเรื่องhit อัพเดททุกเรื่องhot
description: ทันทุกเรื่องhit อัพเดททุกเรื่องhot เกาะกระแสดารา รวมเกมส์ ดูดวง ฟังเพลง หางาน ของฟรี
keywords: ดารา, รูปดารา, เกมส์, ดูดวง, ฟังเพลง, ดาวโหลด, หางาน, เนื้อเพลง, เกม, กลอน, ภาพsexy, Chat, เว็บบอร์ด, หาเพื่อน, คลิป, บอล, เกาหลี, รถยนต์, ดูหนัง, ละครดารา, เซ็กซ์, ผู้หญิง
คือว่า อยากให้ search เวปที่ต้องการดู แล้ว ออกประวัติเวปได้ ตอนนี้เปนแบบต้องใส่ชื่อเวปเข้าไปในโค้ด
Tag : PHP
|
|
|
|
|
|
Date :
2011-06-07 10:52:33 |
By :
เรยา |
View :
634 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TT~ ไม่ีไคตอบเลย
|
|
|
|
|
Date :
2011-06-07 11:20:29 |
By :
TT~ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|