3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = 'Bienvenue chez nous'; $result = match (true) { preg_match('/Welcome/', $text) || preg_match('/Hello/', $text) => 'en', preg_match('/Bienvenue/', $text) || preg_match('/Bonjour/', $text) => 'fr', default => 'other', }; var_dump($result); $result = match (true) { preg_match('/Welcome/', $text), preg_match('/Hello/', $text) => 'en', preg_match('/Bienvenue/', $text), preg_match('/Bonjour/', $text) => 'fr', default => 'other', }; var_dump($result);

preferences:
35.36 ms | 405 KiB | 5 Q