PHP Classes

File: php/validateEmail.php

Recommend this page to a friend!
  Classes of bamigboye biodun   Logical Functions   php/validateEmail.php   Download  
File: php/validateEmail.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Logical Functions
General-purpose PHP and JavaScript functions
Author: By
Last change:
Date: 1 year ago
Size: 209 bytes
 

Contents

Class file image Download
<?php

$validateEmail
= fn(String $email): bool => filter_var($email, FILTER_VALIDATE_EMAIL);

/*
Author : Biodun Bamigboye

Usage
$validateEmail('bamigboyebiodun@eportalnet.com'));
return value : true


*/