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'. How can I do this?
Use array_splice as following:
array_splice
array_splice($array, 3, 0, array('d'));
1.4m articles
1.4m replys
5 comments
57.0k users