本文整理汇总了PHP中Msg::setRead方法的典型用法代码示例。如果您正苦于以下问题:PHP Msg::setRead方法的具体用法?PHP Msg::setRead怎么用?PHP Msg::setRead使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Msg
的用法示例。
在下文中一共展示了Msg::setRead方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: action_view
/**
* 查看站内信
*/
public function action_view()
{
$this->template->msgId = $msgId = (int) $this->getQuery('msg_id');
$select = DB::select('mb.*', 'msgs.title', 'msgs.content', 'msgs.msg_time', 'u2.username', array('u.username', 'send_username'), 'msgs.msg_time', 'msgs.title')->from(array('msg_boxs', 'mb'))->join('msgs')->on('msgs.msg_id', '=', 'mb.msg_id')->join(array('users', 'u'))->on('u.uid', '=', 'mb.uid')->join(array('users', 'u2'))->on('u2.uid', '=', 'msgs.uid')->where('mb.type', '=', 'inbox')->where('mb.is_del', '=', '0')->where('mb.uid', '=', $this->auth['uid'])->where('mb.msg_id', '=', $msgId);
$msg = new Msg($this->auth['uid']);
$msg->setRead($msgId);
$this->template->info = $info = $select->execute()->current();
if ($this->isPost()) {
$receiver = trim($this->getPost('receiver'));
$title = trim($this->getPost('title'));
$content = trim($this->getPost('content'));
try {
$msg->sendMsg($receiver, $title, $content, 0);
$links[] = array('text' => '返回收件箱', 'href' => '/message/list');
$this->show_message('回复邮件成功', 1, array(), true);
} catch (Exception $e) {
$this->show_message($e->getMessage(), 0, array(), true);
}
}
}