如何在Codeigniter中设置character_limiter()

时间:2013-04-23 17:46:34

标签: php codeigniter character

我是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); 

3 个答案:

答案 0 :(得分:4)

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;
    }

答案 1 :(得分: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; ?>

答案 2 :(得分:0)

首先在autoload.phpcontroller类中加载帮助程序类。

要在全球使用,请写在 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;?>
    }
  }
?>