<?php $text = 'Bienvenue chez nous'; $result = match (true) { preg_match('/Bienvenue/', $text) || false => 'fr', default => 'other', }; var_dump($result); $result = match (true) { preg_match('/Bienvenue/', $text) => 'fr', default => 'other', }; var_dump($result);
You have javascript disabled. You will not be able to edit any code.