當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Post::getUserPost方法代碼示例

本文整理匯總了PHP中app\models\Post::getUserPost方法的典型用法代碼示例。如果您正苦於以下問題:PHP Post::getUserPost方法的具體用法?PHP Post::getUserPost怎麽用?PHP Post::getUserPost使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\models\Post的用法示例。


在下文中一共展示了Post::getUserPost方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: show

 public function show()
 {
     $result = "";
     $user = Session::get('user_info');
     $user_id = $user['user_id'];
     $result = Post::getUserPost($user_id);
     if (!empty($result)) {
         return view("member.show-post", ["user_info" => Session::get('user_info'), "post_list" => $result]);
     } else {
         return view("member.show-post", ["user_info" => Session::get('user_info'), "post_list" => ""]);
     }
 }
開發者ID:huanpc,項目名稱:web_technology_6_semester,代碼行數:12,代碼來源:MemberController.php

示例2: count

            $kind = "Ô tô, xe máy";
            $result = Post::where("location", "LIKE", "%{$location}%")->where("category_id", '=', "3")->where("title", 'LIKE', "%{$value}%")->get()->toArray();
            break;
        case '3':
            $kind = "Nhà đất";
            $result = Post::where("location", "LIKE", "%{$location4}")->where("category_id", '=', "1")->orWhere("category_id", '=', "2")->where("title", 'LIKE', "%{$value}%")->get()->toArray();
            break;
        case '4':
            $kind = "Điện thoại, Laptop";
            $result = Post::where("location", "LIKE", "%{$location}%")->where("category_id2", '=', "16")->orWhere("category_id2", '=', "17")->where("title", 'LIKE', "%{$value}%")->get()->toArray();
            break;
        default:
            break;
    }
    if (!empty($result)) {
        $count = count($result);
        return View::make("tim_kiem", array("result" => $result, "count" => $count, "kind" => $kind, "key" => $value));
    } else {
        return View::make("tim_kiem", array("result" => "", "kind" => $kind, "key" => $value));
    }
});
Route::get("/test/{name}/{value}", function ($name, $value) {
    print_r(Users::whereLike($name, $value));
});
Route::get("member/test2/{user_id}", function ($user_id) {
    foreach (Post::getUserPost($user_id) as $key => $value) {
        echo "<p>";
        print_r($value);
        echo "</p>";
    }
});
開發者ID:huanpc,項目名稱:web_technology_6_semester,代碼行數:31,代碼來源:routes.php


注:本文中的app\models\Post::getUserPost方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。