If I have an array like:
$myArray = array('Firstly' => '1', 'Secondly' => '2.0', 'Thirdly' => 'three');
How do I delete a specific key and it's corresponding value? I know you can array_shift and array_pop ... but I want to be able to say.
Array_Remove($myArray, 'Secondly');
... or something like that how do I do it?