当前位置: 首页>>代码示例>>PHP>>正文


PHP Msg::setRead方法代码示例

本文整理汇总了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);
         }
     }
 }
开发者ID:BGCX261,项目名称:zhongyycode-svn-to-git,代码行数:23,代码来源:message.php


注:本文中的Msg::setRead方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。