“PHP -Tschech, wenn String 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 -Tschech, wenn String enthält

$a = 'How are you?';

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

Überprüfen Sie, ob die Zeichenfolge Zeichen -PHP enthält

// 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 -Finden Sie, ob das Substring in String ist

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

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

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 -Tschech, wenn String enthält”

Fragen ähnlich wie “PHP -Tschech, wenn String enthält”

Weitere verwandte Antworten zu “PHP -Tschech, wenn String enthält” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen