<?php $arr = array ( '0' => array("red","green"), '1' => array("blue","yellow") ); $res = []; foreach ( $arr as $item ) { $res = array_merge($res, $item); } print_r($res);
You have javascript disabled. You will not be able to edit any code.