Unsupported scripts and control panel web app for a hosting company
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

discount.php 309B

12345678910111213141516171819202122
  1. <?PHP
  2. $codes = array();
  3. function randLetter($set) {
  4. global $codes;
  5. $num = rand(65,90);
  6. $codes[$set] += $num - 65;
  7. return chr($num);
  8. }
  9. for ($i = 0; $i < 4; $i++) {
  10. for ($j = 0; $j < 4; $j++) {
  11. echo randLetter($i);
  12. }
  13. echo '-';
  14. }
  15. for ($i = 0; $i < 4; $i++) {
  16. echo chr(($codes[$i] % 26) + 65);
  17. }
  18. ?>