Searched up and down, but I couldn't find anything that works.
I want to strip everything except you
.
$words = "you,us,them,our";
$keep = "you,";
This does the opposite:
$words = str_replace("$keep", "", $words);
How do I strip everything except $keep
?