<?php $arr = array("DepTime" => "2014-12-10T15:40:00", "ArrTime" => "2014-12-10T18:25:00", "ETicketEligible" => 1, "OperatingCarrier" => "HW"); $WSSegment = (object) $arr; $Segment = new stdClass; $Segment->WSSegment = $WSSegment; $obj = new stdClass; $obj->Segment = $Segment; print_r($obj); function getTime($str){ $format = "H:i"; // hours and minutes $timeObj = new DateTime( $str ); return $timeObj->format( $format ); } foreach($obj as $nested) { foreach($nested as $n){ echo 'DEP - ',getTime( $n->DepTime ),"\n"; echo 'ARV - ',getTime( $n->ArrTime ),"\n"; } }
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`