I'm wondering why this doesn't work? I'm setting a property (array) and one value it has to get from a method inside the class, I guess I'm doing something I really shouldn't but I would be very grateful for both an explanation why it doesn't work and how it would work ;)
I'm new to
Class Widget{
public $settings = array('setting1',array(
'subsetting1'=> 1,
'subsetting2' =>$this->WidgetFunction()
));
function WidgetFunction() {
echo 'works';
}
}
Getting following error:
Parse error: syntax error, unexpected T_VARIABLE on line 7
(where WidgetFunction is called)