<?php $arr = array("Habie" => [ "2019-06-30" => ["duration" => "4 Hour", "status" => "Less"], "2019-06-26" => ["duration" => "11 Hour", "status" => "More"], "total" => "15 Hour"], "Budiman" => [ "2019-06-28" => ["duration" => "4 Hour", "status" => "Less"], "2019-06-25" => ["duration" => "3 Hour", "status" => "Less"], "total" => "7 Hour"] ); $dates = ["2019-06-30", "2019-06-29", "2019-06-28", "2019-06-27", "2019-06-26", "2019-06-25", "2019-06-24"]; $template = array_map(function ($e) {return [];}, array_flip($dates)); foreach($arr as $k => &$v) $v = array_merge($template, $v); print_r($arr);
You have javascript disabled. You will not be able to edit any code.