3v4l.org

run code in 300+ PHP versions simultaneously
<?php $weather = array( "forecasts" => array("晴れ", "晴れ時々雨", "雪のち雨") ); $ary = array( "晴れ" => "sunny", "雨" => "rainy", "曇" => "cloudy", "雪" => "snowy", "のち" => "later", "時々" => "and" ); for ($i=0; $i < 3; $i++) { //$telop = $weather->forecasts[$i]->telop; $telop = $weather->forecasts[$i]; foreach ($ary as $key => $value) { str_replace($key, $ary[$key], $telop); } echo $telop; }

preferences:
41.6 ms | 402 KiB | 5 Q