duanaixuan7385 2011-12-26 22:39
浏览 38
已采纳

使用php从数组中检索最后一个值

I have an array name arrayname and have some values in below image.

enter image description here

How can I Get the last value in array arrayname even if the value at arrayname1[7] is empty. This should ignore empty values and gives the end answer.

  • 写回答

5条回答 默认 最新

  • donglao7947 2011-12-26 22:43
    关注

    Filter out the empty values, take the last value:

    $array = array_filter($arrayname1);
    $lastValue = end($array);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部