Meta tag checker?

jimjones44

Registered Member
Joined
May 18, 2010
Messages
94
Reaction score
3
I don't know if software like this exists, but could somebody possibly point me in the right direction by recommending to me a bit of software would analyse a list of websites to see if they have META tags on their site?
 
Take a look at this function in php:

http://php.net/manual/en/function.get-meta-tags.php

<?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
?>

or look into using a better solution in php with curl & regular expressions.

What tags are you interested in specifically? I could whip something up quickly and post it.
 
Last edited:
Back
Top