mirror of
https://github.com/php/doc-ja.git
synced 2026-04-29 19:13:26 +02:00
85ea803500
要は、こういうことだ。 ``` <?php $a = [1, 2, 3]; next($a); next($a); var_dump(current($a)); // int(3) asort($a); var_dump(current($a)); // int(1) ``` https://github.com/php/doc-en/commit/6a6f43d1c490a57b452656db285de6d136055ed2
11 KiB
11 KiB