本文整理匯總了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" => ""]);
}
}
示例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>";
}
});