我有这个数组:
<?php
$arrFiles = array_diff(scandir("scans", 0), array(".", ".."));
$arrFiles = array_values($arrFiles);
?>
这打印得很好:
<?php
print_r(array_values($arrFiles));
?>
我想用这些按钮从一张图像跳到上一张或下一张:
<a href="javascript:skipLeft()"><img src="/ico/skip_left.gif" width="12" height="12" hspace="1" vspace="1" />skip left</a> /
<a href="javascript:skipRight()"><img src="/ico/skip_right.gif" width="12" height="12" hspace="1" vspace="1" />skip right</a>
我可能需要某种循环,-1 和 +1 或 prev 和 next 什么的。
我已经尝试了很多东西。没运气。
页面: http: //flamencopeko.net/songs_scans_skip.php
来源: http: //flamencopeko.net/songs_scans_skip.txt