gpt4 book ai didi

php - 如何在 Codeigniter 中仅显示模型的前 100 个字符

转载 作者:行者123 更新时间:2023-11-29 08:32:58 25 4
gpt4 key购买 nike

这是我的模型

function get_news(){
$this->db->select('*');
$this->db->from('articles');
$this->db->where('status' , 0);
$this->db->limit(6);
$this->db->order_by('created', 'desc');
return $this->db->get()->result();
}

我的表格文章

id----title----body----status---created

现在在正文列上,我只想显示 100 个字符,我应该在 View 、 Controller 或此模型上的位置进行编辑。

最佳答案

使用子字符串

$content = substr($str, 0, 100);

关于php - 如何在 Codeigniter 中仅显示模型的前 100 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16029253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com