作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 MVC 格式 php where 创建 if else 语句
我正在尝试将此代码放入我的 Controller 中
if(数据库B的表1中的A列的所有值都存在于数据库B的表2的A列中)
[Load Model A]
Else
[Load Model B]
请帮忙,我不知道是在 Controller 中还是在模型中写这个
public function ownercount(){
$this->db->selectCount('id');
$this->db->from('owner_register');
$this->db->order_by("id", "desc");
$query = $this->db->get();
$result = $query->result_array();
return $result;
}
public function gymcount(){
$this->db->selectCount('id');
$this->db->from('gym');
$this->db->order_by("id", "desc");
$query = $this->db->get();
$result = $query->result_array();
return $result;
在我的 Controller 中我把这个
public function gym()
{
is_protected();
$this->load->model->('adminmodel')
$ownercount = $this->load->adminmodel->ownercount();
$this->load->model->('adminmodel')
$gymcount = $this->load->adminmodel->gymcount();
if ($ownercount = $gymcount) {
$data['message']=$this->Adminmodel->gymlist();
$this->load->view('Admin/customer.php',$data);
} else {
$data['message']=$this->Adminmodel->gymlist1();
$this->load->view('Admin/customer.php',$data);
}
}
这是我在 Controller 上写的内容,但出现了 500http 错误
最佳答案
您是否尝试过使用一个 SQL 查询? :
`从表 1 中选择计数();select count() from table1 where colomnA in (select colomnA from table2);
`
关于php - 如何在 php MVC 中使用 if else,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59756479/
我是一名优秀的程序员,十分优秀!