“Si le texte contient un mot alors en php” Réponses codées

PHP Vérifiez si la chaîne contient un mot

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Grepper

Si le texte contient un mot alors en php

if (strpos($haystack,$needle) !== false) {
    echo "$haystack contains $needle";
}
Ankur

La chaîne PHP contient

$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
gtamborero

PHP Vérifiez si la chaîne contient

// returns true if $needle is a substring of $haystack
function contains($haystack, $needle){
    return strpos($haystack, $needle) !== false;
}
Friendly Hawk

Réponses similaires à “Si le texte contient un mot alors en php”

Questions similaires à “Si le texte contient un mot alors en php”

Plus de réponses similaires à “Si le texte contient un mot alors en php” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code