php 反转数组元素
php reverse array elements
我刚开始学习 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));
您可以添加 array_reverse() 来反转数组。这将为您解决问题。
$gallery_images = array_reverse(array_values(get_children('pos_type=attachment&post_mime_type=image&post_parent=' . $gallery->ID)));
在 php 中反转标准索引数组的最简单方法是使用 array_reverse 函数。
但是如果你只是想把它循环出来,你还不如使用一个向后的 for 循环:
for($i=count($array);$i-->0;) {
echo $array[$i];
}
这将反向循环数组。
我刚开始学习 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));
您可以添加 array_reverse() 来反转数组。这将为您解决问题。
$gallery_images = array_reverse(array_values(get_children('pos_type=attachment&post_mime_type=image&post_parent=' . $gallery->ID)));
在 php 中反转标准索引数组的最简单方法是使用 array_reverse 函数。
但是如果你只是想把它循环出来,你还不如使用一个向后的 for 循环:
for($i=count($array);$i-->0;) {
echo $array[$i];
}
这将反向循环数组。