Hi!
Is it possible delete array elements mantaining the key numbers?
For example: my array is
$fruit = array(0=>"lemon", 1=>"orange", 2=>"banana", 3=>"apple");
I want delete orange and have as result
$fruit = array(0=>"lemon", 1=>"banana", 2=>"apple");
Is it possible? What's the function do to this?
Thanks!