Exemple #1
0
 /**
  * 获取验证码
  * @param $flag 大小写是否敏感(默认否)
  */
 public static final function get_code($flag = false)
 {
     if (!$flag === true) {
         self::$code = strtolower(self::$code);
     }
     return self::$code;
 }