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.
簡単な質問ですが、ここで検索するとさまざまなバリエーションが見つかりましたが、実際には必要なものではありません。そう:
数値の配列があるとします: [1,4,5,7,9] 必要なのは、最大 10 までの数値の反転結果セットです: [2,3,6,8,10]
$initialArray = array(1,4,5,7,9); $requiredRange = range(1,10); $invertedArray = array_diff($requiredRange,$initialArray);