I have an array name arrayname
and have some values in below image.
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.
I have an array name arrayname
and have some values in below image.
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.
收起
Filter out the empty values, take the last value:
$array = array_filter($arrayname1);
$lastValue = end($array);
报告相同问题?