Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a Sellers collection and a Buyers collection like below:

$sellers = collect([id=1 , qty = 5 , price = 100],
                   [id=2 , qty = 3 , price = 110],
                   [id=3 , qty = 2 , price = 115]);

$buyers = collect([id=1 , qty = 2 , price = 115],
                  [id=2 , qty = 4 , price = 105],
                  [id=3 , qty = 3 , price = 100]);

How can I create a new collection after filling Sellers and Buyers list? (I am looking to get something like :

$output = ([seller_id = 1, buyer_id = 1 , fill_price = 100, fill_qty = 2],
           [seller_id = 1, buyer_id = 2 , fill_price = 100, fill_qty = 3]);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...