Skip to content

Instantly share code, notes, and snippets.

@heywin
Created January 11, 2015 14:53
Show Gist options
  • Save heywin/3fa7c63c0b52219041ec to your computer and use it in GitHub Desktop.
Save heywin/3fa7c63c0b52219041ec to your computer and use it in GitHub Desktop.
域名长度筛选
<?php
$content = file_get_contents("list.txt");
//echo $content;
$array = explode("\n", $content);
// print_r($array);
// foreach($array as $a){
// if (strlen($a) < 16 && strlen($a) > 14)
// echo $a."<br>";
// }
foreach($array as $a){
if (strlen($a) < 14)
echo $a."<br>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment