3v4l.org

run code in 300+ PHP versions simultaneously
<?php function splitEmail($str) { $pattern = "/([\w\s\'\"]+[\s]+)?(<)?(([\w-\.]+)@((?:[\w]+\.)+)([a-zA-Z]{2,4}))?(>)?/g"; preg_match($pattern, $str, $match); return array( 'name' => isset($match[1]) ? trim($match[1]) : null, 'email' => isset($match[3]) ? trim($match[3]) : null, ); } $e = array( '<foo@bar.com>', 'Miguel <miguel@bar.com>', '"ddd" <123@d.com>', 'll\'f <ddd@ddd.ll>', 'foo@bar.com', ); foreach($e as $v) { var_dump($splitEmail($v)); }
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $splitEmail in /in/kVjEM on line 22 Fatal error: Uncaught Error: Value of type null is not callable in /in/kVjEM:22 Stack trace: #0 {main} thrown in /in/kVjEM on line 22
Process exited with code 255.

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:
53.64 ms | 401 KiB | 8 Q