0

我是 Codeigniter 的新手。现在我想在视图中设置字符限制。首先,使用 $query_result->result() 从数据库中获取数据,然后使用 foreach() 将其显示在视图中。

这是我的控制器、模型和视图:

public function index() {
$data = array();
$data['category'] = $this->product_model->selectAllcategory();
$data['randProduct'] = $this->product_model->selectRandomProduct();
$data['products'] = $this->product_model->selectAllProduct();
$data['maincontent'] = $this->load->view('home', $data, true);
$data['title'] = 'Welcome Russel Store';
$this->load->view('index', $data);
}

我的模型:

public function selectAllProduct() {
$this->db->select('*');
$this->db->from('product');
$this->db->where('status', 1);
$this->db->order_by('product_id', 'desc');
$query_result = $this->db->get();
$result = $query_result->result();
return $result;
}

我想在视图中设置字符限制:

http://russelstore.mastersite.info

echo character_limiter($result->product_title, 25);
4

3 回答 3

5

http://ellislab.com/codeigniter/user-guide/helpers/text_helper.html

您应该导入文本助手

在您的控制器中,最好在构造函数中加载帮助程序、模型和库

function __construct()
{
  parent::__construct();
  $this->load->helper('text');
  $this->load->model('products_model'); //name of your model class

}

function index()
{
  $data['products']=$this->products_model->selectAllProduct();
  $this->load->view('index',$data);
}

在你看来 index.php

//This is an example from CI's home page        
//$string = "Here is a nice text string consisting of eleven words.";            
//$string = word_limiter($string, 4);

    foreach($products as $p)
    {
        $limited_word = word_limiter($p[product_title],25);
        echo $limited_word;
    }
于 2013-04-23T18:30:34.010 回答
0

你可以在那里使用我的代码

<?php $artikel=$a->isi;$artikel=character_limiter($artikel,200); ?>
            <p><?php echo $artikel ?></p>
            <a href="<?php echo base_url()."index_cont/list_artikel_kat/".$a->id_artikel; ?>" target="_blank">Selanjutnya</a>
        <?php endforeach; ?>
于 2018-03-26T13:02:07.990 回答
0

autoload.php首先在其中一个或类中加载帮助程序controller类。

对于全球使用,请填写Autoload.php

$autoload['helper'] = array('text');

或者,如果您只想在一controller.php类中使用,那么:

function __construct()
{
  parent::__construct();
  $this->load->helper('text');
}

然后在你的view.php

<?php 
  if(!empty($ques)) {
    foreach($ques as $list) { 
      $title = character_limiter($list->Title, 80); // Here we are setting the title character limit to 80
      <?php echo $title;?>
    }
  }
?>
于 2019-02-16T12:15:56.707 回答