Skip to content

Instantly share code, notes, and snippets.

@ko31
Created April 2, 2016 20:54
Show Gist options
  • Save ko31/8b2d3dcfa589df797a7e56d9f2cf7a2a to your computer and use it in GitHub Desktop.
Save ko31/8b2d3dcfa589df797a7e56d9f2cf7a2a to your computer and use it in GitHub Desktop.
【php】WordPressかどうかチェックする
<?php
$lines = file('url.txt', FILE_IGNORE_NEW_LINES);
$count = 0;
foreach ($lines as $line) {
$val = explode(',', $line);
$html = file_get_contents($val[1]);
if (strpos($html, 'wp-content') !== false) {
echo $val[0] . "は WordPress です\n";
$count++;
}
}
echo $count . " counts\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment