列出我一直在使用以下代码的 db 中的值
模型
function user_list_community($serviceName) {
$ipJson = json_encode($input);
$this->db->select('*');
$this->db->from('community');
//$this->db->where('user_id', $input['user_id']);
$query = $this->db->get();
$result = $query->result();
if (!empty($result)) {
$data['list_community']= $result;
$data['message'] = 'User details retrieved successfully.';
$status = $this->ville_lib->return_status('success', $serviceName, $data, $ipJson);
} else {
$data['message'] = 'Unable to retrieve.Please the user id';
$status = $this->ville_lib->return_status('error', $serviceName, $data, $ipJson);
}
return $status;
}
控制器
function list_community_post(){
$serviceName = 'list_community';
$retVals = $this->user_model->user_list_community($input, $serviceName);
header("content-type: application/json");
echo $retVals;
exit;
}
我面临的问题是正在获取值,但出现如下错误。我在这里做错了什么。有人能帮我吗 。谢谢。
遇到 PHP 错误严重性:通知
消息:未定义变量:输入
文件名:控制器/users.php
行号:57
遇到 PHP 错误严重性:通知
消息:未定义变量:输入
文件名:models/user_model.php
行号:67