公共函数find_ID($ post_ID = false)

时间:2016-11-18 02:55:17

标签: codeigniter

有人可以解释一下这段代码:

为什么在帖子中写入$ post_ID = false:

模型/ post_model.php

 public function find_ID($post_ID = false)
{
}

视图/ 0headers.php

$article = $this->post_model->find_ID(48);

1 个答案:

答案 0 :(得分:0)

实际上我不明白为什么它在模型中的函数中。该函数内的代码可以解释这一点 这意味着如果没有$post_ID从控制器传递,则将$post_ID作为false在函数内的某处使用它。

示例调用如下所示:

$article = $this->post_model->find_ID();