Просмотр файла header/click-club.class.php

Размер файла: 732B
  1. <?php
  2.  
  3. class click_club{
  4.  
  5. function captcha_text($length){
  6. $symbols=symbols;
  7. for ($i=0;$i<$length;$i++) @$text.=$symbols[mt_rand(0,strlen($symbols)-1)];
  8. return $text;
  9. }
  10.  
  11. function is_login($text){
  12. global $_EREG;
  13.  
  14.  
  15. If (!ereg("^[".$_EREG['login']."]{".min_login.",".lenght_login."}$",$text)) return false;
  16. return true;
  17. }
  18.  
  19. function is_password($text){
  20. global $_EREG;
  21.  
  22.  
  23. If (!ereg("^[".$_EREG['password']."]{".min_login.",".lenght_login."}$",$text)) return false;
  24. return true;
  25. }
  26.  
  27. function is_mail($text){
  28.  
  29. $len=strlen($text);
  30. If ($len<min_mail || $len>lenght_mail || !preg_match("/^[-0-9a-z_.]+(\@){1}[-0-9a-z_.]+\.[a-z]{2,5}$/i",$text)) return false;
  31. return true;
  32. }
  33.  
  34. }
  35.  
  36. $click_club=new click_club;
  37. ?>