ウェブサイトのゲームのトップ 10 リストを作成しようとしています。サイト上のゲームに関するすべての情報を含む連想配列があります。
$games = array();
$games[] = array(
"title" => 'Disaster will strike 2',
"link_name" => 'disaster-will-strike-2',
"id" => 1,
"desc" => 'Create earthquakes, launch fireballs and cause other crazy disasters to destroy all the eggs in each level.',
"cat" => 'Puzzle',
"img_src" => 'img/disaster_will_strike_2.png',
"play_count" => 0
);
各ゲームには「play_count」と呼ばれるキーがあり、ユーザーがそのゲームをプレイするたびに増加します。プレイ回数の多いゲームを上位から順に 10 ゲーム挙げてみたいと思います。私はこれを行う方法を知っています。for ループ、ネストされた for ループ、foreach ループを使用してみましたが、何が間違っているのかわかりません。誰でもこれで私を助けることができますか?