3v4l.org

run code in 300+ PHP versions simultaneously
<?php $regex= '#Schedule a (?<scheduletype>\w+)\swith\s(?<person>\w+)\sat\s(?<time>\w+)#'; preg_match($regex, 'Schedule a meeting with Ann at 3pm', $matches); echo $matches['scheduletype']."\n"; echo $matches['person']."\n"; echo $matches['time']."\n";

preferences:
59.94 ms | 402 KiB | 5 Q