我刚开始学习php,当我在WordPress中进行数组内容时,我遇到了一些问题。例如
我得到这样的数组[0,1,2,3,4]
[4,3,2,1,0]
那样反转它
这是我的数组代码
$gallery_images = array_values(get_children('pos_type=attachment&post_mime_type=image&post_parent=' . $gallery->ID));
答案 0 :(得分:1)
您可以添加array_reverse()来反转数组。这将为你解决问题。
$gallery_images = array_reverse(array_values(get_children('pos_type=attachment&post_mime_type=image&post_parent=' . $gallery->ID)));
答案 1 :(得分:0)
在php中反转标准idexed数组的最简单方法是使用array_reverse函数 但是如果你要将它循环出去,你也可以使用向后循环:
for($i=count($array);$i-->0;) {
echo $array[$i];
}
将以反方向循环数组。