Script PHP Mengambil Title dan Meta tag Website
Publish Date : 10-10-2016 , dibaca 8212 kali, Hari ini dibaca : 1 kali ,0 comments
Script PHP mengambil Title dan Meta Tag Website , tutorial ini merupakan tutorial yang cukup menarik, dengan menggunakan scrip PHP kita bisa mengetahui title / judul sebuah website, Kita ketahui bersama script title di apit oleh tag <title> html , Dengan menggunakan script php dibawah ini kita bisa mengetahui judul dan meta deskripsi yang digunakan oleh sebuah website,
Code PHP untuk mengambil Judul Website
<?php
// function to get webpage title
function getTitle($url) {
$page = file_get_contents($url);
$title = preg_match('/<title[^>]*>(.*?)<\/title>/ims', $page, $match) ? $match[1] : null;
return $title;
}
// get web page title
echo 'Title: ' . getTitle('http://www.w3schools.com/php/');
// Output:
// Title: PHP 5 Tutorial
?>
Script PHP untuk Mengambil Meta deskripsi Website
<?php
// function to get meta description
function getDescription($url) {
$tags = get_meta_tags($url);
return @($tags['description'] ? $tags['description'] : "NULL");
}
// get web page meta description
echo 'Meta Description: ' . getDescription('http://www.w3schools.com/php/');
// Output:
// Meta Description: Well organized and easy to understand Web bulding tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, and XML.
?>