我有一个数组并检查是否end()
存在或为空。如果它是空的,我想获取数组的前一个对象。我尝试使用prev()
,但在应用于end()
.
有什么建议么?数组的长度和大小可能不同。
谢谢你们的帮助!
一些代码:
$pagination = esc_url( get_next_posts_page_link()); // returns url with slashes
$parts = explode('/', $pagination);
//get the last item
$tag = end($parts);
if ($tag == ""){echo prev($tag); } else{echo $tag;}