有人可以解释一下这段代码:
为什么在帖子中写入$ post_ID = false:
模型/ post_model.php
public function find_ID($post_ID = false)
{
}
视图/ 0headers.php
$article = $this->post_model->find_ID(48);
答案 0 :(得分:0)
实际上我不明白为什么它在模型中的函数中。该函数内的代码可以解释这一点
这意味着如果没有$post_ID
从控制器传递,则将$post_ID
作为false
在函数内的某处使用它。
示例调用如下所示:
$article = $this->post_model->find_ID();