使用php设计简单验证码

2017,1,3,星期二

  一、所需的代码,步骤:

    1.新建画布[新建图像]

    resource p_w_picpathcreatetruecolor ( int $width , int $height );

    2.选取颜色

    int p_w_picpathcolorallocatealpha ( resource $p_w_picpath , int $red , int $green , int $blue , int $alpha );

    3.画图

    bool p_w_picpathellipse ( resource $p_w_picpath , int $cx , int $cy , int $width , int $height , int $color )

    4.区域填充

    bool p_w_picpathfill( resource $p_w_picpath   , int $x   , int $y   , int $color );

    5.生成随机数

    int mt_rand( int $min, int $max );

    6.随机打乱一个字符串

    string str_shuffle( string $str );

    7.用 TrueType 字体向图像写入文本

    array p_w_picpathttftext ( resource $p_w_picpath , float $size , float $angle  , int $x  , int $y , int $color , string $fontfile  , string $text  );

    8.返回字符串的子串

    string substr ( string $string, int $start[, int $length  ] )

    9.发送原生 HTTP 头

    void header ( string $string [, bool $replace = true [, int $http_response_code ]] );

    10.以 PNG 格式将图像输出到浏览器或文件

    bool p_w_picpathpng ( resource $p_w_picpath [, string $filename ] );

    11.销毁一图像

    bool p_w_picpathdestroy  ( resource $p_w_picpath );