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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

無法在 Laravel 中使用 Illuminate\\Http\\JsonResponse

無法在 Laravel 中使用 Illuminate\\Http\\JsonResponse

PHP
慕容森 2023-07-01 09:38:10
我有這樣的數(shù)據(jù)集:$data[] =Array(    [u_d] => ABCDEF    [0] => Array        (        [one] => oned        [two] => 222        [three] => three        [four] => 444        [five] => 555        [events] => Array            (                [0] => Array                    (                        [feed] => Array                            (                                [0] => Array                                    (                                        [date-time] => 191018080000                                        [sub-type] => abc                                        [comments] => test comments                                        [parameter-list] => para1, para2                                        [state] => bad                                        [value] => 1000                                    )                            )                    )            )        )    [1] => Array        (            [one] => two            [two] => 224562            [three] => thyyree            [four] => 445344            [five] => 5345355            [events] => Array                (                )        ))我只需要獲取事件并刪除空事件。然而,首先我嘗試獲取像這樣的事件,但它給出了一個(gè)錯(cuò)誤。                               $new = [];                                 for($i=0 ; $i < count($data)-1 ; $i++)                                {                                  if(count($data[$i]['events']) > 0)                                  {                                                                        $new[] = $data[$i]['events'];                                                                     }                                                                  }                                print_r ($new);但它給了我一個(gè)錯(cuò)誤: Cannot use object of type Illuminate\Http\JsonResponse as array誰能幫我解決這個(gè)問題嗎?
查看完整描述

2 回答

?
慕姐8265434

TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊

你需要解碼$data[0]而不是$data因?yàn)槟阏谧?/p>

$data[] =

同樣的 for 循環(huán),你應(yīng)該這樣做

if(count($data[0][$i]['events']) > 0)


查看完整回答
反對(duì) 回復(fù) 2023-07-01
?
回首憶惘然

TA貢獻(xiàn)1847條經(jīng)驗(yàn) 獲得超11個(gè)贊

您可以像這樣使用 Laravelcollect() 方法:

collect($your_array)->toJson();

https://laravel.com/docs/7.x/collections


查看完整回答
反對(duì) 回復(fù) 2023-07-01
  • 2 回答
  • 0 關(guān)注
  • 374 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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