gpt4 book ai didi

php - 如何在 php MVC 中使用 if else

转载 作者:行者123 更新时间:2023-11-29 15:14:50 24 4
gpt4 key购买 nike

如何在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com