see if string contains substring php code example
Example 1: php find if string contains
if (strpos($string, 'substring') !== false) {
// do stuff
}
Example 2: contains php
if (strpos($a, 'are') !== false) {
echo 'true';
}
if (strpos($string, 'substring') !== false) {
// do stuff
}
if (strpos($a, 'are') !== false) {
echo 'true';
}