CI Framework Verification Code CAPTCHA Auxiliary function usage example, Cicaptcha
This paper describes the use of CI Framework Verification Code CAPTCHA auxiliary function, and share it for everyone's reference. Specific as follows:
Using the Captcha helper function is convenient to generate verification code, but the picture is stored in the folder, not the output stream, the feeling is not perfect, can be used.
Description: Generates a 4-bit random number, and the Captcha folder is established under the CI root directory.
Copy the Code code as follows: <?php
$this->load->helper (' captcha ');
$vals = Array (
' word ' = rand (1000, 10000),
' Img_path ' = './captcha/',
' Img_url ' = ' http://localhost/ci/captcha/',
' Font_path ' = './path/to/fonts/texb.ttf ',
' img_width ' = ' 150 ',
' Img_height ' = 30,
' Expiration ' = 7200
);
$cap = Create_captcha ($vals);
echo $cap [' image '];
?>
The results of the operation are as follows:
It is hoped that this article will be helpful to the CI framework design of everyone.
How do I create a picture verification code using CI?
PHP has a lot of verification code class Ah! You can use it almost without modifying a class library as a CI. Google search php captcha view original posts >>
How do I create a picture verification code using CI?
PHP has a lot of verification code class Ah! You can use it almost without modifying a class library as a CI. Google search php captcha view original posts >>
http://www.bkjia.com/PHPjc/906672.html www.bkjia.com true http://www.bkjia.com/PHPjc/906672.html techarticle CI Framework Verification Code CAPTCHA Auxiliary function Usage example, Cicaptcha This article describes the CI Framework verification Code CAPTCHA Auxiliary function usage, share for everyone for reference. Specific as follows: to make ...