Bootstrap

Redefining already defined constructor for class

解决方案:
  打开 includes/cls_captcha.php  
 
找到下面这段代码
   function __construct($folder = '', $width = 145, $height = 20)
    {
        $this->captcha($folder, $width, $height);
    }
将它移到
function captcha($folder = '', $width = 145, $height = 20)
的上边。

转载于:https://my.oschina.net/barter/blog/533684

;