使用 false 作为 CodeIgniter 的 select() 方法的第二个参数有什么作用?
我无法理解以下内容:
$this->db->select('1', FALSE);
有人可以解释它的作用以及何时使用它吗?
I am unable to understand following:
$this->db->select('1', FALSE);
Can someone explain what this does and when to use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个参数是表中 case
1
中的字段名称或值,第二个参数 FALSE 防止第一个参数用反引号括起来。如果您嵌套子查询作为第一个参数,则可以使用它。有关更多信息,请参阅 Codigniter 文档,它们非常有用。
The first parameter is the field names or values in your case
1
from your table, the second parameter FALSE prevents the first parameter being wrapped in backticks. You'd use this is you were nesting a sub query as the first parameter.For further information see the Codigniter docs which are incredibly useful.