Answers for "chaine contient sous chaine php"

PHP
0

php rechercher dans une chaine

<?php
  $string = 'Hello World!';
  if(stristr($string, 'terre') === FALSE) {
   echo '"terre" non trouvé dans la chaîne de caractères';
  }
// affiche : "terre" non trouvé dans la chaîne de caractères
?>
Posted by: Guest on April-03-2020

Code answers related to "chaine contient sous chaine php"

Browse Popular Code Answers by Language