I am trying to make $app
available for the whole class.
First, I get:
"Expression is not allowed as field default value"
Second, on line 5, I get:
Unidentified variable $app
How can I achieve my goal?
class UserController extends XController
{
var $app = Yii::app();;
public function init()
{
$test = $app;
See Question&Answers more detail:os