<?php $motif = '~\bAncré\b~u'; $textes = array('Ancré', 'ancré', ' Ancré', ' ancré', 'Ancrés', 'ancrés', ' Ancrés', ' ancrés', 'Ancré,'); foreach($textes as $texte) { if (preg_match($motif, ' ' . $texte)) { echo 'Jes ', $motif, ' |', $texte, '|<br />', PHP_EOL; } else { echo '<em>Ne ', $motif, ' |', $texte, '|</em><br />', PHP_EOL; } }
You have javascript disabled. You will not be able to edit any code.