我想发送一条系统消息,用他的名字称呼用户。该消息存储在 .txt 文件中,如下所示:
你好 $user->名字
登录链接:something.something/user/id
在 userController(发送消息的地方)中,我现在尝试用实际的 $user->firstname 替换 $user->firstname:
$output = file_get_contents(Yii::$app->basePath."message.txt");
$user = $this->findModel($id); //this is tested and works
$output = str_replace("$user->firstname", $user->firstname, $output);
但是,此后我的输出仍然与文本文件中的输出完全相同。我究竟做错了什么?
缥缈止盈
哆啦的时光机