79501830

Date: 2025-03-11 18:58:32
Score: 0.5
Natty:
Report link
function isGmail($email) {
    $email = trim($email); 
    $validate = substr($email, -10);
    

   if ($validate == "@gmail.com"){
       return true;
   }  
   
   return false;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KHALID