I'm trying to create a list of users with the most sales and I'd like to find a way to combine two arrays.
$user_ids = sample_one();
$user_sales = sample_two();
var_dump on both sample functions:
array(2) {
[0]=> string(1) "1" // user ID
[3]=> string(1) "3"
}
array(2) {
[0]=> int(5) // User sales
[1]=> int(20)
}
In the end I'd like to combine these two arrays. Something like this:
$users = array (
array (
'id' => '1',
'sale' => '5'
)
array (
'id' => '3',
'sale' => '20'
),
)
I tried using array_combine( $user_ids, $user_sales ); but that didn't work. Any alternatives? Eventually I'll end up using it as
array_sort($users, 'sale', SORT_DESC)