Reputation: 13600
I get Syntax error in php yii, concatenating strings
echo "<h1>Welcome </h1>" . Yii::app->user->name;
Upvotes: 0
Views: 441
Reputation: 1091
It should be Yii::app()->user->name;
Yii::app()->user->name;
Upvotes: 2