Or, if you are dealing with dates that are before Jan 1, 1970, strtotime won't work, so you'd need to use [man]substr[/man] function to extract each of the 3 components, and then just concatenate them using the slash.
$year = substr($date, 0, 4);
$month = substr($date, 4, 2);
$day = substr($date, 6, 2);
echo $year."/".$month."/".$day;