2016-11-25 17 views
5

私は配列laravelフォームリクエストからキーを取得する方法は?

array:2 [▼ 
    2 => "12" 
    7 => "12" 
] 

を持っているが、フォームから送信し、私は私がそれらを呼び出すんどのように2と7が必要ですか?

鍵はそのようにしたい部分のIDです。 foreachのは

foreach($request->except('_token') as $part) { 
    /*get Key here (in this case 2 or 7) and get value here (in this case both 12)*/ 
} 

誰かがこれを行う方法を教えてもらえます... IDと値 が、その後何かを更新し得ますか?

ありがとうございます。 foreach

答えて

7

使用$key => $value表記:

foreach ($request->except('_token') as $key => $part) { 
    // $key gives you the key. 2 and 7 in your case. 
} 
5
$data = $request->except('_token') 
foreach($data as $id => $value){ 
    echo "My id is ". $id . " And My value is ". $value; 
} 
関連する問題