モデルでこの関数を作成して、自分のソーシャル ネットワークで誰がフォローしているかを確認しました...ビューでどのように呼び出すのですか??
function isfollowing($following){
$user_id = $this->session->userdata('uid');
$this->db->select('*');
$this->db->from('membership');
$this->db->join('following', "membership.id = following.tofollow_id");
$this->db->where("tofollow_id","$following");
$this->db->where("user_id", "$user_id");
$q = $this->db->get();
if($q->num_rows() > 0) {
return "yes";
} else {
return "no";
}
}
今、私のビューでは、現在ログオンしているユーザーのIDを取得する関数をすでに作成しており、それは $r->id に等しいということをどのように呼び出すのですか
ここでそれをどのように呼びますか?? そのif文の「==」の後には何がありますか?
景色
<?php if ( $r->id == ): ?>