Php 8 str contains

Code examples

47
0

php check if string contains word

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

php string contains

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

string contains php

$a = 'How are you?';

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

contains php

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

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................