“PHP Vérifiez si la chaîne contient un char” 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 trouver si la sous-chaîne est en chaîne

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

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

Si le texte contient un mot alors en php

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

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

$haystack = 'This is my haystack that we shall check'
$has_A = strpos($haystack, 'A') !== false;
$has_a = strpos($haystack, 'a') !== false;
Vadris_

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 Vérifiez si la chaîne contient un char”

Questions similaires à “PHP Vérifiez si la chaîne contient un char”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code