描述
不会搜索 i18n(国际化) 域名,不符合RFC。
参数
-
(string) (必填) 要验证的电子邮件地址。
- $deprecated
-
(bool) (可选) 已弃用
默认值: false
返回
(string|false) 成功时返回有效的电子邮件地址,失败时为false。
说明
不会搜索 i18n(国际化) 域名。不符合RFC。
它不能正确地测试无效的字符。该代码不能区分电子邮件如123.dot@domain.com
if ( ! preg_match('/^[a-z0-9-]+$/i', $sub ) ) { /** This filter is documented in wp-includes/formatting.php */ return apply_filters( 'is_email', false, $email, 'sub_invalid_chars' ); }
源码
更新日志
版本 | 描述 |
---|---|
0.71 | 开始引入 |
使用示例
实例
if ( is_email( 'email@domain.com' ) ) { echo 'email address is valid.'; }