第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Laravel - 將集合轉(zhuǎn)換為簡單數(shù)組

Laravel - 將集合轉(zhuǎn)換為簡單數(shù)組

PHP
子衿沉夜 2023-04-02 14:58:40
所以我有這段代碼:    $collectionOfProducts = \DB::table('products_specif')->whereIn('size',$arrayOfAttributes)->whereIn('color',$arrayOfAttributes)->whereIn('material',$arrayOfAttributes)->get('product_code');    $product_codes = $collectionOfProducts->unique();    dd($product_codes->toArray());    $arrayOfProducts = \DB::table('products')->whereIn('product_code',$product_codes)->get();    return view('pages.products', compact('arrayOfProducts','type'));dd() 響應(yīng):array:4 [▼  0 => {#1252 ▼    +"product_code": "SocksCode"  }  4 => {#1257 ?}  9 => {#1262 ?}  13 => {#1266 ?}]我想在我的whereIn語句中使用 $product_codes,但我不能因?yàn)殚_頭的那些數(shù)字 (0,4,9,13)。如何將此集合/數(shù)組轉(zhuǎn)換為簡單的“product_code”:“code”數(shù)組?
查看完整描述

1 回答

?
開心每一天1111

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超13個贊

您可以使用 pluck 方法獲取數(shù)組product_code


$product_codes= \DB::table('products_specif')

->whereIn('size',$arrayOfAttributes)

->whereIn('color',$arrayOfAttributes)

->whereIn('material',$arrayOfAttributes)->pluck('product_code')->toArray();


$arrayOfProducts = \DB::table('products')->whereIn('product_code',$product_codes)->get();



查看完整回答
反對 回復(fù) 2023-04-02
  • 1 回答
  • 0 關(guān)注
  • 218 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號