登录 注册
当前位置:主页 > 资源下载 > 16 > 二维码的PHP实现代码

二维码的PHP实现代码

  • 更新:2024-08-30 23:37:02
  • 大小:60KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:PHP - 后端
  • 格式:ZIP

资源介绍

font = dirname(__FILE__).'./font/elephant.ttf';//注意字体路径要写对,否则显示不了图片 } //生成随机码 private function createCode() { $_len = strlen($this->charset)-1; for ($i=0;$i<$this->codelen;$i++) { $this->code .= $this->charset[mt_rand(0,$_len)]; } } //生成背景 private function createBg() { $this->img = imagecreatetruecolor($this->width, $this->height); $color = imagecolorallocate($this->img, mt_rand(157,255), mt_rand(157,255), mt_rand(157,255)); imagefilledrectangle($this->img,0,$this->height,$this->width,0,$color); }