Skip to content

Instantly share code, notes, and snippets.

@ko31
Created April 2, 2016 21:05
Show Gist options
  • Save ko31/f2bd97fb1ac468948aea47bb9cde3dc0 to your computer and use it in GitHub Desktop.
Save ko31/f2bd97fb1ac468948aea47bb9cde3dc0 to your computer and use it in GitHub Desktop.
【php】metaタグのgeneratorをチェックする
<?php
$lines = file('url.txt', FILE_IGNORE_NEW_LINES);
foreach ($lines as $line) {
$val = explode(',', $line);
$tags = get_meta_tags($val[1]);
if (isset($tags['generator'])) {
echo $val[0] . "は " . $tags['generator'] . " です\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment