1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-27 16:42:17 +01:00
Files
archived-doc-ja/reference/array/functions/sort.xml
Yoshinari Takaoka 85ea803500 Documentation of index reset effect of some array functions
要は、こういうことだ。

```
<?php

$a = [1, 2, 3];

next($a);
next($a);
var_dump(current($a)); // int(3)
asort($a);
var_dump(current($a)); // int(1)
```

6a6f43d1c4
2021-11-09 23:09:32 +09:00

4.2 KiB