“PHP -Überprüfung, ob Zeichenfolge Word 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

Ü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 -Zeichenfolge enthält Zeichenfolge

$str = 'Hello World!';

if (strpos($str, 'World') !== false) {
    echo 'true';
}
Snippets

PHP -Finden Sie, ob das Substring in String ist

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

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

Überprüfen Sie die String in String PHP

$myString = 'Hello Learn Tech Tips (Zidane)?';
if (strpos($myString, 'Zidane') !== false) {
    echo "This string contains Zidane";
}
Zidane (Vi Ly - VietNam)

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

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

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

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

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen