how to transform two arrays. could this be possible? to make arrays individually in php. how to transform two arrays. could this be possible? to make arrays individually in php.
Arrayone
(
[0] => H00
[1] => T00.0
[2] => L00
)
Arraytwo
(
[0] => 1
[1] => 2
[2] => 3
)
Transform to like this
Array
(
[icd] => H00
[rank] => 1
)
Array
(
[icd] => T00.0
[rank] => 2
)
Array
(
[icd] => L00
[rank] => 3
)