9

色々揃えてますが…

$foo = [];
$foo['stuff']['item'][0]['title' => 'flying_lotus'];
$foo['stuff']['item'][1]['title' => 'various_cheeses'];
$foo['stuff']['item'][2]['title' => 'the_career_of_vanilla_ice'];
$foo['stuff']['item'][3]['title' => 'welsh_cats'];

Laravel 4 の Validator メソッドを使用して、「タイトル」キーを検証するにはどうすればよいですか?

これが私がこれまでに持っているものです...

$validator = Validator::make($foo, ['stuff.item.???.title' => 'required']);

私はインデックス付き配列に完全に困惑しています。どんな助けでも素晴らしいでしょう。

4

3 に答える 3