我需要做一個DB惰性的,看起來像這樣:PHP推維數組
DB::table('users')->insert([
['email' => '[email protected]', 'votes' => 0],
['email' => '[email protected]', 'votes' => 0]
]);
但我tryint建立與例如在一個循環的動態值的數據添加更多的時間:
array_push($a,'email' => $this->mail,'votes' => $this->votes);
所以,我可以簡單地以後運行此:
DB::table('users')->insert($myData);
所以,我怎麼能推維數組?
你到底在做什麼?你能展示結構嗎? – ggderas