Вы прошли через это сообщение в php.net?
<meta name="author" content="name">
<meta name="keywords" content="php documentation">
<meta name="DESCRIPTION" content="a php manual">
<meta name="geo.position" content="49.33;-86.59">
</head> <!-- parsing stops here -->
читать эти мета-теги, используя PHP код writte ниже
<?php
// Assuming the above tags are at www.example.com
$tags = get_meta_tags('http://www.example.com/');
// Notice how the keys are all lowercase now, and
// how . was replaced by _ in the key.
echo $tags['author']; // name
echo $tags['keywords']; // php documentation
echo $tags['description']; // a php manual
echo $tags['geo_position']; // 49.33;-86.59
?>
этих кодов, взятых из http://php.net/manual/en/function.get-meta-tags.php
имеют вид [здесь] (http://stackoverflow.com/questions/1036351/ это-это возможно, к потребительной JQuery для чтения-мета-теги) –