Checking ".count($emails)." emails ....
";
foreach ( $emails as $email ) {
$email = trim($email);
print $count .". Checking ".$email." ..... ";
$count++;
if(filter_var($email, FILTER_VALIDATE_EMAIL)){
$_CheckAction = @file_get_contents('https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/wa/validateAppleID?appleid='.$email.'') or Die('Server Error - Can\'t Check ');
if(!preg_match("/111/",$_CheckAction)) {
print "Yes
";
$yes++;
$vaild_yes .=$email."\n";
}
else {
print "NO
";
$not++;
$vaild_no .=$email."\n";
}
}
else {
print "Invaild email
";
$inv++;
$invaild .=$email."\n";
}
}
print '
Apple emails ('.$yes.') |
Not Apple emails ('.$not.') |
Invalid emails ('.$inv.') |
Copyright © 2013
Gz SnIPeR