Assigning Array with literal string index to an array with numeric index
- by anita
How to Assign an Array with literal string index to an array with numeric index.
[IN PHP]
Both have the same length...for example
Literal array(HELL0=somevalue1,BYE=somevalue2)
Numeric index array(1=somevalue1,2=somevalue2) [Expected result in second array]
Both have same length / count of values 2.
Pls help ASAP
Anita