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


PHP Topic::select方法代码示例

本文整理汇总了PHP中Topic::select方法的典型用法代码示例。如果您正苦于以下问题:PHP Topic::select方法的具体用法?PHP Topic::select怎么用?PHP Topic::select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Topic的用法示例。


在下文中一共展示了Topic::select方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getForums

 public function getForums()
 {
     $this->layout->title = "Forums";
     $this->layout->description = "";
     $this->layout->keywords = "";
     $this->layout->top_active = 6;
     $topics = DB::table('topics')->get();
     $topics_count = count($topics);
     $categories = DB::table('categories')->get();
     $categories_count = count($categories);
     $category_topics = Topic::select(DB::raw('count("*") as count, category_id, title,categories.category_name'))->groupBy("category_name")->groupBy("title")->join('categories', 'topics.category_id', '=', 'categories.id')->get();
     $this->layout->main = View::make('admin.forums', ['cat_topic' => $category_topics, 'count_cat' => $categories_count, 'count' => $topics_count, "main_tab" => 2, "sub_tab" => 1, "cat" => "forum"]);
 }
开发者ID:vishu87,项目名称:cpr,代码行数:13,代码来源:AdminController.php

示例2: scopeExcellentEx

 public static function scopeExcellentEx($limit)
 {
     return Topic::select('id', 'title', 'user_id', 'created_at')->where('is_excellent', '=', true)->take($limit)->remember(10)->get();
 }
开发者ID:fcode520,项目名称:phphub,代码行数:4,代码来源:Topic.php


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