PDA

View Full Version : 'data' php question


peptobismol
09-23-2008, 02:05 AM
I'm messing around with a skin of a wiki and I ran into this line

foreach ($this->data['sidebar'] as $bar => $cont) {

so what's data? it's not a variable but it's formed like an array

thanks

CobaltBlueDW
09-23-2008, 04:42 AM
It IS a variable. A variable of the object you are looking at. You might not see the variable if there is a __get() function defined, but it IS a variable.