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.
たとえば、次のコードがあります。
$sample = array(apple, orange, banana, grape);
配列全体で同じ順序を維持しながら$sample[2]、 newを作成して、この配列を再配置したいと思います。$sample[0]
$sample[2]
$sample[0]
出力は次のようになります。
Array ( [0] => banana [1] => grape [2] => apple [3] => orange)