当前位置: 首页>>代码示例>>PHP>>正文


PHP Func::randString方法代码示例

本文整理汇总了PHP中Func::randString方法的典型用法代码示例。如果您正苦于以下问题:PHP Func::randString方法的具体用法?PHP Func::randString怎么用?PHP Func::randString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Func的用法示例。


在下文中一共展示了Func::randString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: imgVerify

 /**
  * 验证码
  * 图片尺寸,50x24
  *
  * @param integer $length :验证码长度
  * @param integer $mode  : 0大小写字母,1数字,2大写字母,3小写字母,5大小写+数字
  * @param string $type :图片类型
  * @param boolean $hasborder :图片边框有否
  * @return binary
  */
 public static function imgVerify($length = 4, $mode = 3, $type = 'png', $hasborder = true)
 {
     $randval = Func::randString($length, $mode);
     $_SESSION['imgVerifyCode'] = md5(strtolower($randval));
     //dump($_SESSION);exit;
     $width = 50;
     $height = 24;
     $width = $length * 9 + 10 > $width ? $length * 9 + 10 : $width;
     if ($type != 'gif' && function_exists('imagecreatetruecolor')) {
         $im = @imagecreatetruecolor($width, $height);
     } else {
         $im = @imagecreate($width, $height);
     }
     //$r = array(225,255,255,223);
     //$g = array(225,236,237,255);
     //$b = array(225,236,166,125);
     //$key = mt_rand(0,3);
     //$backColor = imagecolorallocate($im, $r[$key],$g[$key],$b[$key]);
     $backColor = imagecolorallocate($im, 252, 252, 252);
     //背景色
     if ($hasborder) {
         $border_color = 238;
     } else {
         $border_color = 255;
     }
     $borderColor = imagecolorallocate($im, $border_color, $border_color, $border_color);
     //边框色
     $pointColor = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
     //点颜色
     @imagefilledrectangle($im, 0, 0, $width - 1, $height - 1, $backColor);
     @imagerectangle($im, 0, 0, $width - 1, $height - 1, $borderColor);
     $stringColor = imagecolorallocate($im, mt_rand(0, 200), mt_rand(0, 120), mt_rand(0, 120));
     // 干扰
     for ($i = 0; $i < 10; $i++) {
         $fontcolor = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
         imagearc($im, mt_rand(-10, $width), mt_rand(-10, $height), mt_rand(30, 300), mt_rand(20, 200), 55, 44, $fontcolor);
     }
     for ($i = 0; $i < 25; $i++) {
         $fontcolor = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
         imagesetpixel($im, mt_rand(0, $width), mt_rand(0, $height), $pointColor);
     }
     @imagestring($im, 5, 5, 3, $randval, $stringColor);
     header("Content-type: image/" . $type);
     $ImageFun = 'Image' . $type;
     $ImageFun($im);
     imagedestroy($im);
 }
开发者ID:beyondzgz,项目名称:ePHP,代码行数:57,代码来源:Image.class.php


注:本文中的Func::randString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。