The strchr function returns the first occurrence of a character in a string and returns the rest of the string. It's case sensitive.
$sentence = 'The quick brown fox';
$sentenceStrchr = strchr($sentence, 'quick');
echo $sentenceStrchr;
// quick brown fox