mirror of
https://github.com/php/doc-ja.git
synced 2026-03-27 16:42:17 +01:00
要は、こういうことだ。
```
<?php
$a = [1, 2, 3];
next($a);
next($a);
var_dump(current($a)); // int(3)
asort($a);
var_dump(current($a)); // int(1)
```
6a6f43d1c4
4.2 KiB
4.2 KiB