check if exists in string in php $a = ‘How are you?’; if (strpos($a, ‘are’) !== false) { echo ‘true’; } OR // returns true …
Read MoreSpread Your Knowledge
check if exists in string in php $a = ‘How are you?’; if (strpos($a, ‘are’) !== false) { echo ‘true’; } OR // returns true …
Read More