check if string value exist in string php code example
Example 1: php chech if string contains
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: check if text exists in string php
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}