<?php $text = "bccbd"; $healthy = array("b", "c", "d"); $yummy = array("B", "O", "S"); $text = str_replace($healthy, $yummy, $text); print($text); ?>