i have an array $this-data['Phone'] ( am using cakephp framework)
output of this give this.
Array
(
[0] => Array
(
[number] => 23467887
)
[1] => Array
(
[number] =>
)
[2] => Array
(
[number] => 23563866
)
[3] => Array
(
[number] =>
)
[4] => Array
(
[number] => 11222
)
)
i wanna unset the [1] and [3] because it doesnt have any values for the number.
i want a an array returned like this
Array
(
[0] => Array
(
[number] => 23467887
)
[1] => Array
(
[number] => 23563866
)
[2] => Array
(
[number] => 11222
)
)
Note: the key values have changed
After the all the manipulation all this should be stored in $this->data['Phone']