Home > Backend Development > PHP Tutorial > Simple implementation method of thinkPHP31 verification code thinkphp3.1 laravel thinkphp if

Simple implementation method of thinkPHP31 verification code thinkphp3.1 laravel thinkphp if

WBOY
Release: 2016-07-29 08:52:26
Original
1099 people have browsed it

The example in this article describes the simple implementation method of thinkPHP3.1 verification code. Share it with everyone for your reference, the details are as follows:

Write in the code:

public function verify(){
    import('ORG.Util.Image');
    ob_clean();
    Image::buildImageVerify();
}

Copy after login

Write in the html:

<img src='__APP__/Index/verify/'
  
/>

Copy after login

That is to say, the path of the picture is the access path of the above php code, which is ok

If it is a picture If it is not displayed, it means ob_clean(); is not written. This method is to remove the cache and so on. If it is garbled, just write the above php code directly in front of the display method. Remember, this method is separate and should not be combined with it. Other methods are mixed together

Readers who are interested in more thinkPHP related content can check out the special topics of this site: "ThinkPHP Getting Started Tutorial", "ThinkPHP Common Methods Summary", "Smarty Template Basic Tutorial" and "PHP Template Technology Summary".

I hope this article will help you design PHP programs based on the ThinkPHP framework.

The above introduces the simple implementation method of thinkPHP31 verification code, including the content of thinkphp. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template