“PHP -Überprüfung, ob die Zeichenfolge ein Zeichen enthält” Code-Antworten

PHP -Überprüfung, ob Zeichenfolge Word enthält

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

PHP -Finden Sie, ob das Substring in String ist

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

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

Wenn Text Wort enthält, dann in PHP

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

PHP -Überprüfung, ob die Zeichenfolge ein Zeichen enthält

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

PHP -Überprüfung, ob die Zeichenfolge enthält

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

Ähnliche Antworten wie “PHP -Überprüfung, ob die Zeichenfolge ein Zeichen enthält”

Fragen ähnlich wie “PHP -Überprüfung, ob die Zeichenfolge ein Zeichen enthält”

Weitere verwandte Antworten zu “PHP -Überprüfung, ob die Zeichenfolge ein Zeichen enthält” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen