I want to create an array using two arrays. The first array contains Strings. The second array contains numbers. I want to create a third array such as for example:
1st array:
array:2 [▼
0 => "Test"
1 => "People"
]
2nd array:
array:2 [▼
0 => "3"
1 => "2"
]
3rd array:
array:5 [▼
0 => "Test"
1 => "Test"
2 => "Test"
3 => "People"
4 => "People"
]
Can you help me?
foreachandarray_fill?