[PHP] Inserting into the middle of an array

2001-04-01 Thread Yoshi Melrose
Ok. I must be s blind. Is there a function to insert a value into the middle of an array without rewriting it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

Re: [PHP] Inserting into the middle of an array

2001-04-01 Thread Lindsay Adams
On 4/1/01 11:32 AM, "Yoshi Melrose" [EMAIL PROTECTED] wrote: Ok. I must be s blind. Is there a function to insert a value into the middle of an array without rewriting it? In PHP3, no. PHP4, see http://www.php.net/manual/en/function.array.php You could pull it off with combinations of

Re: [PHP] Inserting into the middle of an array

2001-04-01 Thread Lindsay Adams
On 4/1/01 11:57 AM, "Yoshi Melrose" [EMAIL PROTECTED] wrote: - Original Message - From: "Lindsay Adams" [EMAIL PROTECTED] On 4/1/01 11:32 AM, "Yoshi Melrose" [EMAIL PROTECTED] wrote: Ok. I must be s blind. Is there a function to insert a value into the middle of an array