Answers for "php does string contain"

PHP
65

php check if string contains word

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Posted by: Guest on August-06-2019
5

php string contains

$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Posted by: Guest on May-20-2020
2

php string contains

str_contains(string $haystack , string $needle);
Posted by: Guest on June-02-2021
0

contains php

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Posted by: Guest on July-02-2020

Code answers related to "php does string contain"

Browse Popular Code Answers by Language