mirror of
https://github.com/disposable-email-domains/disposable-email-domains.git
synced 2024-11-22 16:48:13 +08:00
Merge pull request #133 from pjebs/master
More efficient PHP code based on original
This commit is contained in:
commit
ef29d0680f
13
README.md
13
README.md
@ -31,13 +31,14 @@ Available as [PyPI module](https://pypi.python.org/pypi/disposable-email-domains
|
|||||||
True
|
True
|
||||||
```
|
```
|
||||||
|
|
||||||
**PHP** contributed by @txt3rob and @deguif
|
**PHP** contributed by [@txt3rob](https://github.com/txt3rob), [@deguif](https://github.com/deguif) and [@pjebs](https://github.com/pjebs)
|
||||||
```php
|
```php
|
||||||
function is_temp_mail($mail) {
|
function is_disposable_email($email) {
|
||||||
$mail_domains_ko = file('disposable_email_blacklist.conf', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
$path = realpath(dirname(__FILE__)) . '/disposable_email_blacklist.conf';
|
||||||
|
$mail_domains_ko = file($path, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
||||||
//Need to ensure the mail contains an @ to avoid undefined offset
|
$mail_domains_ko = array_fill_keys($mail_domains_ko, true);
|
||||||
return in_array(explode('@', $mail)[1], $mail_domains_ko);
|
$domain = mb_strtolower(explode('@', trim($email))[1])
|
||||||
|
return (isset($mail_domains_ko[$domain]) || array_key_exists($domain, $mail_domains_ko));
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
**Ruby on Rails** contributed by @MitsunChieh
|
**Ruby on Rails** contributed by @MitsunChieh
|
||||||
|
Loading…
Reference in New Issue
Block a user