下载表情包:https://ellislab.com/asset/ci_download_files/smileys.zip    

public function smiley()

    {
        $this->load->helper('smiley');
        $this->load->library('table');


        $image_array = get_clickable_smileys(base_url('aa'));//括号里为表情的路径其他无需修改
        $col_array = $this->table->make_columns($image_array, 8);


        $data['smiley_table'] = $this->table->generate($col_array);
        echo $data['smiley_table'];
        // $this->load->view('smiley_view', $data);

    }

如果想使用其他表情包则需下载表情包之后

找到config/smieys.php更改其中的数组即可

ci框架表情包辅助函数

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-19
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2021-09-07
  • 2022-01-21
  • 2021-11-27
相关资源
相似解决方案