Warning: This function has been deprecated. Use is_email() instead.
validate_email( string $email, bool $check_domain = true )
Deprecated functionality to validate an email address.
Description Description
See also See also
Parameters Parameters
-
(string) (Required) Email address to verify.
- $check_domain
-
(bool) (Optional) Deprecated.
Default value: true
Return Return
(string|bool) Either false or the valid email address.
Source Source
File: wp-includes/ms-deprecated.php
170 171 172 173 | function validate_email( $email , $check_domain = true) { _deprecated_function( __FUNCTION__ , '3.0.0' , 'is_email()' ); return is_email( $email , $check_domain ); } |
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Use is_email() |
MU (3.0.0) | Introduced. |