Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のシナリオを実行するPHPコードの作成に問題があります。
グループ内の 4 人の子供はそれぞれ、3 つの果物を食べなければなりません。子供が果物を 3 つ食べたら、そのグループから外さなければなりません。
$kids = array('Bob', 'Joe', 'Sue', 'Sara'); foreach ($kids as $key => $kid) { for($i=1; $i<=3; $i++) { eat_fruit($kid); } // drop kid from kids unset($kids[$key]); }