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

$string = 'The lazy fox jumped over the fence';

if (str_contains($string, 'lazy')) {
    echo "The string 'lazy' was found in the string\n";
}

TomatenTim

PHP -Tschech, wenn String enthält

$a = 'How are you?';

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

String enthält Php

$a = 'How are you?';

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

PHP, wenn String enthält

if (str_contains('How are you', 'are')) { 
    echo 'true';
}
nanaseous

PHP -Zeichenfolge enthält

$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
gtamborero

Ähnliche Antworten wie “PHP -Zeichenfolge enthält”

Fragen ähnlich wie “PHP -Zeichenfolge enthält”

Weitere verwandte Antworten zu “PHP -Zeichenfolge enthält” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen