Ismail Marmoush
Ismail Marmoush

Reputation: 13600

Syntax error in php yii, concatenating strings

I get Syntax error in php yii, concatenating strings

 echo "<h1>Welcome </h1>" . Yii::app->user->name;

Upvotes: 0

Views: 441

Answers (1)

zuo
zuo

Reputation: 1091

It should be Yii::app()->user->name;

Upvotes: 2

Related Questions