“La chaîne PHP contient” 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

La chaîne PHP contient

$string = 'The lazy fox jumped over the fence';

if (str_contains($string, 'lazy')) {
    echo "The string 'lazy' was found in the string\n";
}

TomatenTim

PHP CHÉCH si la chaîne contient

$a = 'How are you?';

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Indian Gooner

La chaîne contient php

$a = 'How are you?';

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Samson Munyira

php si la chaîne contient

if (str_contains('How are you', 'are')) { 
    echo 'true';
}
nanaseous

La chaîne PHP contient

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

Réponses similaires à “La chaîne PHP contient”

Questions similaires à “La chaîne PHP contient”

Plus de réponses similaires à “La chaîne PHP contient” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code