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 $a = array('1000'=>1,2,3,4,'1001'=>5); var_dump(array_reverse($a)); ?>
そして、私は次のような出力を得ています:
array (size=4) 0 => int 4 1 => int 3 2 => int 5 3 => int 1
値 2 がありません。誰でもコードを説明できますか?