summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tool/get_fqdn_tmg1.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/tool/get_fqdn_tmg1.php b/tool/get_fqdn_tmg1.php
index 04e65b57..ad897ff5 100644
--- a/tool/get_fqdn_tmg1.php
+++ b/tool/get_fqdn_tmg1.php
@@ -5,14 +5,15 @@ define('F_INPUT','noncloudflarelist.txt');
define('F_OUTPUT','fqdnlist.txt');
if (!file_exists(F_INPUT)){
- die('File not found');
+ print 'File not found';
+ exit;
}
$result = array();
foreach(explode("\n",file_get_contents(F_INPUT)) as $t){
$t = explode(' ',$t)[0];
- if (preg_match("/^([a-z0-9-\.]{1,255})\.([a-z]{2,40})$/",$t)){
+ if (preg_match("/^([a-z0-9\.-]{1,255})\.([a-z]{2,40})$/",$t)){
$result[] = $t;
}
}
@@ -20,4 +21,4 @@ foreach(explode("\n",file_get_contents(F_INPUT)) as $t){
$result = array_unique($result);
file_put_contents(F_OUTPUT,implode("\n",$result));
-echo('Done');
+print 'Done';