I'm trying to remove everything from an array except DTSTART & DTEND
So I'm trying to convert this:
Array
(
[0] => Array
(
[DTEND] => 20130417
[DTSTART] => 20130403
[UID] => [email protected]
[DESCRIPTION] => CHECKIN: 04/08/2012\nCHECKOUT: 04/17/2012\nNIGHTS: 14\nPHO
[NE] => +1 504 914 0591\nEMAIL: [email protected]\nPROPERTY: Breathtaking views over the lake\n
[SUMMARY] => Name here (ED5ASC)
[LOCATION] => Breathtaking views over the lake
)
[1] => Array
(
[DTEND] => 20131231
[DTSTART] => 20131226
[UID] => [email protected]
[DESCRIPTION] => CHECKIN: 12/26/2013\nCHECKOUT: 12/31/2013\nNIGHTS: 5\nPHON
[E] => +44 7843 387767\nEMAIL: [email protected]\nPROPERTY: Breathtaking views over the lake\n
[SUMMARY] => Name here (JrtyKW9)
[LOCATION] => Breathtaking views over the lake
)
[2] => Array
(
[DTEND] => 20121123
[DTSTART] => 20121117
[UID] => [email protected]
[SUMMARY] => Not available
)
)
to look like this:
Array
(
[0] => Array
(
[DTEND] => 20130417
[DTSTART] => 20130403
)
[1] => Array
(
[DTEND] => 20131231
[DTSTART] => 20131226
)
)
[2] => Array
(
[DTEND] => 20121123
[DTSTART] => 20121117
)
)
I've searched for loads of options but I need to be able to just select these two elements and discard the rest, I will be using it with different arrays that have different values so can't just specify the elements to remove as they will vary.