How to add an array value to the middle of an array?

前端 未结 4 1185
無奈伤痛
無奈伤痛 2020-12-17 09:06

Lets say I have this array:

$array = array(1,2,\'b\',\'c\',5,6,7,8,9.10);

Later in the script, I want to add the value \'d\' before \'c\'.

4条回答
  •  离开以前
    2020-12-17 10:03

    or a more self-made approach: Loop array until you see 'd' insert 'c' then 'd' in the next one. Shift all other entries right by one

提交回复
热议问题