我有以下PHP代码:
foreach ($resources as $resource)
{
// Iterates on the found IDs
//echo 'Name of field: ' . $resource . ' - Value: ' . $resource->attributes() . '<br />';
echo '<tr><td>'.$resource->attributes().'</td></tr>';
}
回报:
1
2
3
4
5
6
7
8
我只想获取最后一项的值:8 我尝试过使用:
echo end(end($resources->attributes()));
但这会返回:1
关于如何获得8值的任何想法?
谢谢