Access Object Data [name:SteamPLayer:private] in foreach loop

165 Views Asked by At

How do I access data in an object array like this? In a foreach loop.

[name:SteamPlayer:private] => Pingu Gaige

Full array here: http://paste.laravel.com/Xic

I have:

foreach($players as $player){
    echo $player.. now I'm lost. 
}
2

There are 2 best solutions below

1
On BEST ANSWER

You're referring to Steam Condenser's SteamPlayer class here. (Full code on GitHub)

foreach($players as $key => value){
    echo "{$value->getName()} has a score of {$value->getScore()}\n";
}
0
On

this could work if not private:

foreach($players as $key => value){
    echo 'name : '. $key . ' and ' $value->connectTime . 
}