mirror of
https://github.com/php/doc-ja.git
synced 2026-03-28 00:52:12 +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
3.6 KiB
3.6 KiB