php containt string code example
Example 1: php find if string contains
if (strpos($string, 'substring') !== false) {
}
Example 2: How do I check if a string contains a specific word?
$a = 'Hello world?';
if (strpos($a, 'Hello') !== false) {
echo 'true';
}
if (stripos($a, 'HELLO') !== false) {
echo 'true';
}
Example 3: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
Example 4: string contains php
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}