本文整理汇总了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>";
}
});