3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = "Coulthard Sally Coulthard Location: Surrey Expertise Covered: Horse, Dog, Horse and Rider Website: www.veterinaryphysio.co.uk Tel: 07865095005 Email: sally@veterinaryphysio.co.uk Kate Haynes Location: Surrey, Sussex, Kent Expertise Covered: Horse, Performance, Horse and Rider Tel: 07957 344688 Email: katehaynesphysio@yahoo.co.uk"; if (preg_match_all("~^(.+)\RLocation:[\s\S]*?^Email: (\S*)~m", $input, $matches, PREG_SET_ORDER)) { foreach ($matches as $data) { echo "{$data[1]}, {$data[2]}\n"; } }
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Sally Coulthard, sally@veterinaryphysio.co.uk Kate Haynes, katehaynesphysio@yahoo.co.uk
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Sally Coulthard, sally@veterinaryphysio.co.uk Kate Haynes, katehaynesphysio@yahoo.co.uk

preferences:
255.98 ms | 402 KiB | 288 Q