<?php
// char coding
header("Content-Type: text/html; charset=utf-8");
// get info function
function getInfo($URL){
$getInfo= get_meta_tags($URL);
return $getInfo;
}
// write the url below
$URL = "http://www.joyent.com";
// var
$_getInfo = getInfo($URL);
// print
echo "$URL <p>";
echo $_getInfo["author"]."<p>";
echo $_getInfo["keywords"]."<p>";
echo $_getInfo["description"]."<p>";
echo $_getInfo["robots"]."<p>";
?>
Refactorings
No refactoring yet !
El Barto
July 11, 2010, July 11, 2010 15:08, permalink
Well, that's nothing more than a call to a built-in function. Anyway, in the sake of refactoring, you could do something like this.
<?php
$url = "http://www.joyent.com";
foreach (get_meta_tags($url) as $tag => $value) {
echo ucfirst($tag) . ": {$value}\n";
}
?>
Hello Php Coders,
It'll be useful to get meta information of an site url.
Take a look, you'll like it.
http://www.freemahjonggames1.com