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(); }
Output for git.master, git.master_jit, rfc.property-hooks
someonesomeone@example.com contains'example'

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
58.52 ms | 401 KiB | 8 Q