I have an array:
array(2) {
["Status"]=>
string(3) "001"
["Data"]=>
array(1) {
["item"]=>
array(87) {
[0]=>
array(36) {
["StartDate"]=>
string(10) "2017-01-13"
["StartTime"]=>
string(8) "07:02:18"
}
}
}
}
I'd like to basically selected data from it ONLY if the StartTime is in the last 30 seconds - according to server time.
What is the best way to do this?