I need help return everything after "I can read." I understand that this will search the string and find whats in the array $check
but how do I make it check and then return all whats found after "I can read"?
$string = "I can read. I can count. I can spell.";
$check = array("I can count.", "I can t count.");
$find = stristr($string, $check, true);
echo $find;