3v4l.org

run code in 300+ PHP versions simultaneously
<?php $re = '~(?:(?:(?:\+|00)32\h?(?:\(0\)\h?)?|0)(?:4(?:60|[789]\d)/?(?:\h?\d{2}\.?){2}\h?\d{2}|(?:\d/?\h?\d{3}|\d{2}[/-]?\h?\d{2})(?:\.?\h?\d{2}){2}))(?!\S)~'; $str = 'OK 01/07 - 31/07 OK 0487207339 OK +32487207339 OK 01.07.2016 OK +32 (0)16 89 44 77 OK 016894477 OK 003216894477 OK +3216894477 OK 016/89.44.77 OK +32 16894477 OK 0032 16894477 OK +32 16/894477 NOK +32 16-894477 (this should match) OK 0479/878810 NOK 20150211-0001731015-1 (this shouldn\'t match)'; preg_match_all($re, $str, $matches); print_r($matches[0]);
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.4, 8.3.6 - 8.3.27, 8.4.1 - 8.4.14
Array ( [0] => 0487207339 [1] => +32487207339 [2] => +32 (0)16 89 44 77 [3] => 016894477 [4] => 003216894477 [5] => +3216894477 [6] => 016/89.44.77 [7] => +32 16894477 [8] => 0032 16894477 [9] => +32 16/894477 [10] => +32 16-894477 [11] => 0479/878810 )
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 Array ( [0] => 0487207339 [1] => +32487207339 [2] => +32 (0)16 89 44 77 [3] => 016894477 [4] => 003216894477 [5] => +3216894477 [6] => 016/89.44.77 [7] => +32 16894477 [8] => 0032 16894477 [9] => +32 16/894477 [10] => +32 16-894477 [11] => 0479/878810 )

preferences:
154.8 ms | 409 KiB | 5 Q