codeigniter数据库如何限制输出
你好,如果我使用 substr(); 我会怎么样?这样我只能从数据库中获取 400 个字符吗?
Hello how can i like if i use substr(); do so i only get like 400 number of characters from the database out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须使用核心 mysql 函数 SUBSTRING 来实现这一目标。
在 codeigniter 中,查询可以写为 -
You have to use core mysql function SUBSTRING to achieve this.
In codeigniter the query can be written as -
您可以使用 codeigniters limiter(测试助手)仅显示您想要的内容
您可以从数据库中提取整个字符串,但仅使用您需要的字符数。
或者
看看这个教程,在 mysql 中使用“left”
http://net.tutsplus.com/教程/php/how-to-create-blog-excerpts-with-php/
You can use codeigniters limiter (test helper) to display only what you want
You can pull the entire string out of the database but only use the number of characters you need.
Or
take a look at this tutorial using "left" in mysql
http://net.tutsplus.com/tutorials/php/how-to-create-blog-excerpts-with-php/
为时已晚,但这适合像我这样寻找解决方案的人
It too late, but this is for someone like me looking for solution