|
我在controller中建立一个文件show.php,代码如下:
<?php
class Show extends CI_Controller{
function __construct(){
session_start();
parent::__construct();
$this->load->helper('url');
$this->load->helper('captcha');
}
function index()
{
$vals = array(
'img_path' => './captcha/',
'img_url' =>'http://localhost/ci/captcha/'
);
$cap = create_captcha($vals);
echo 'Submit the word you see below:';
echo $cap['image'];
echo '<input type="text" name="captcha" value="" />';
}
}
简单的测试了一下看看能不能显示出验证码(http://localhost/ci/show/index),结果没有显示,但在根目录下的captcha目录有很多验证码图片存入,不知道哪里出错了
1、对于这个captcha函数有2个地方不懂:'img_path' => './captcha/',
'img_url' =>'http://localhost/ci/captcha/'
'img_path' 和'img_url'分别表示什么意思,该怎么设置??
2、查了一些资料,有说要去掉什么文件的BOM,不知道这是什么意思,该怎么处理法? |
|