Reputation: 1851
I have multidimensional array and I need to delete one sub array how can I do it without creating another array and copying values?
$myarray
[one] a->1 b->2 c->4
[two] a->5 b->8
[three] a->44 b->55 c->66
I need to remove two $myarray['two']
Upvotes: 0
Views: 5016