Why is this a compile error:
<?php
class Bean
{
public $text = array("123", "456");
public $more = array("000 {$this->text[0]} 000", "--- {$this->text[1]} ---");
}
?>
The compiler says PHP Parse error: syntax error, unexpected '"'
How can I use my text array within my other arrays?