无法访问受保护的属性CI_DB_mysqli_driver :: $ _ protect_identifiers

时间:2018-06-07 09:50:14

标签: codeigniter

我到了 无法访问受保护的属性CI_DB_mysqli_driver :: $ _ protect_identifiers 代码如下

function xyz($use_protech_identifier = false)
{
 $this->db->_protect_identifiers=$use_protech_identifier;
}

1 个答案:

答案 0 :(得分:0)

检查一下。可能这会因为最新的CI版本而起作用。 从protect_identifiers中删除_。

$this->db->protect_identifiers=$use_protech_identifier;

另请参阅我在https://stackoverflow.com/a/50738006/3449206

中给出的相同答案