私が持っている次の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の値を取得する方法についてのアイデアはありますか?
ありがとう