I have one array like below
Array
(
[AllocationPool] => TEST do not USE
[Quarter] => 2016-Q4
[Segment] => Storage
[Region] =>
[SubRegion] =>
[Country] =>
[typeofrec] => 0
[TotalAllocations] => 100
[TotalTransfersOut] => 75
[TotalTransfersIn] => 0
[StartOfAllocation] => 25
[ApprovedActivities] => 0
[AvailableBalance] => 25
[TotalApprovedClaims] => 0
[Balance] => 25
[TotalUnApprovedClaims] => 0
[Exposure] => 25
)
I need to remove some elements from this array and formatted to new structure.
I need to change below structure after format my array
Array
(
[AllocationPool] => TEST do not USE
[Quarter] => 2016-Q4
[Segment] => Storage
[Region] =>
[SubRegion] =>
[Country] =>
)
Is any method available in php for remove some elements in an array using php?