笑脸助手
可以使用以下代码加载笑脸助手:
$this->load->helper('笑脸');
控制器
在您的 application/controllers/ 文件夹中,创建一个名为 smileys.php 的文件并将下面的代码放入其中。
重要提示:更改下面 get_clickable_smileys() 函数中的 URL,使其指向您的笑脸文件夹。
<?php
class Smileys extends CI_Controller {
function __construct()
{
parent::__construct();
}
function index()
{
$this->load->helper('smiley');
$this->load->library('table');
$image_array = get_clickable_smileys('http://example.com/images/smileys/', 'comments');
$col_array = $this->table->make_columns($image_array, 8);
$data['smiley_table'] = $this->table->generate($col_array);
$this->load->view('smiley_view', $data);
}
}
?>
在您的 application/views/ 文件夹中,创建一个名为smiley_view.php的文件并将以下代码放入其中:
<html>
<head>
<title>Smileys</title>
<?php echo smiley_js(); ?>
</head>
<body>
<form name="blog">
<textarea name="comments" id="comments" cols="40" rows="4"></textarea>
</form>
<p>Click to insert a smiley!</p>
<?php echo $smiley_table; ?>
</body>
</html>
当您创建了上述控制器和视图后,通过访问http://www.example.com/index.php/smileys/加载它