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.
10個の要素(0、1、2、...、9)を含む配列をランダムな順序で生成したいと思います。例えば:
$result = array(5, 3, 1, 2, 9, 8, 7, 4, 6, 0);
これを達成するための最も簡単な方法は何ですか?
$numbers = range(0,9); shuffle($numbers);