3v4l.org

run code in 300+ PHP versions simultaneously
<?php class customException extends Exception { public function error_message() { //error message $error_msg = 'Error caught on line '.$this->getLine().' in '.$this->getFile() .': <b>'.$this->getMessage().'</b> is no valid E-Mail address'; return $error_msg; } } $email = "someonesomeone@example.com"; try { //check if if(filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) { //throwing an exception in case email is not valid throw new customException($email); } //checking for "example" in mail address if(strpos($email, "example") !== FALSE) { throw new Exception("$email contains'example'"); } } catch (customException $e) { echo $e->error_message(); } catch(Exception $e) { echo $e->getMessage(); }

preferences:
59.83 ms | 402 KiB | 5 Q