<?php $a = array(array('Holidays' => new DateTime('2018-01-01', new DateTimeZone('Europe/Berlin'))), array('Holidays' => new DateTime('2018-01-26', new DateTimeZone('Australia/Sydney')))); print_r($a); $a = array_map(function ($v) { return $v['Holidays']->format('Y-m-d'); }, $a); print_r($a);
You have javascript disabled. You will not be able to edit any code.