Here is the output array
Array
(
[0] => 4
[2] => 400
[3] => 4000
[4] => 40000
)
from the above array i need to replace the key in an orderly manner.
Array
(
[0] => 4
[1] => 400
[2] => 4000
[3] => 40000
)
then, I need to add 2 values into above array. That values should any of the the values that array contain. Finally, i need the output like this
Array
(
[0] => 4
[1] => 400
[2] => 4000
[3] => 40000
[4] => 40
[5] => 4000
)
How to do this?