Array Help

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Damodhar

    #1

    Array Help

    hi,

    any one say how to insert the value intermediate the array.

    for example one array having value like

    $name = array(1=>one,2= >two,3=>three,5 =>five,6=>six) ;


    i want to insert " 4=>four " in the above array

    the result will be come like


    $name = array(1=>one,2= >two,3=>three,4 =>four,5=>five, 6=>six);

    whats the function used for any predefined array functions is there
    for that.
  • Damodhar

    #2
    Re: Array Help

    hi,

    no need to add end of the array i want to add inter mediate the array
    exactly given position .

    Comment

    Working...