<?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);
You have javascript disabled. You will not be able to edit any code.