mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
19 lines
279 B
PHP
19 lines
279 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Utils;
|
||
|
|
||
|
class Dict
|
||
|
{
|
||
|
CONST EMAIL_WHITELIST_SUFFIX_DEFAULT = [
|
||
|
'gmail.com',
|
||
|
'qq.com',
|
||
|
'163.com',
|
||
|
'yahoo.com',
|
||
|
'sina.com',
|
||
|
'126.com',
|
||
|
'outlook.com',
|
||
|
'yeah.net',
|
||
|
'foxmail.com'
|
||
|
];
|
||
|
}
|