Код: Выделить всё
Array
(
[0] => ratings Object
(
[id] => 1
[rating] => 4.4
)
[1] => ratings Object
(
[id] => 1
[rating] => 5.0
)
[2] => ratings Object
(
[id] => 1
[rating] => 5.0
)
)
Код: Выделить всё
$result_array = array(0 => "4.4",
1 => "5.0",
2 => "5.0");
Код: Выделить всё
$result_array = array();
foreach ($array as $value) {
$result_array[] = $value[1];
}
Подробнее здесь: https://stackoverflow.com/questions/219 ... of-objects