As I keep forgetting, this post is to remind me that Java Java doesn’t have a pretty toString() for arrays objects, and it does for…
$bric = array(“Brazil”, “Russia”, “India”, “China”); $ric = $bric; // array copy $br = array_shift($ric); // left shift at $ric. $br stores “Brazil” print_r($bric); //…