I have an array that looks something like this:
array(
a=>123,
b=>456,
c=>789,
d=>123
);
I want to remove a key=>value, so the finished array looks like this:
array(
a=>123,
c=>789,
d=>123
);
I'm not sure how to do this, unset just removes the value, not the key. Any suggestions?
Thanks,
-sned