“PHP CHÉCH si la chaîne 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

PHP CHÉCH si la chaîne contient

$a = 'How are you?';

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

Vérifiez si la chaîne contient le caractère php

// this method is new with PHP 8 and above
$haystack = "Damn, I wonder if this string contains a comma.";
if (str_contains($haystack, ",")) {
	echo "There is a comma!!";
}
Lonely Doge

php trouver si la sous-chaîne est en chaîne

$result = strpos("haystack", "needle");

if ($result != false)
{
  // text found
}
Meaxis

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 à “PHP CHÉCH si la chaîne contient”

Questions similaires à “PHP CHÉCH si la chaîne contient”

Plus de réponses similaires à “PHP CHÉCH si la chaîne contient” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code