<?php
/**
 * 生成系统AUTH_KEY
 */
function build_auth_key(){
    $chars  = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $chars .= '`~!@#$%^&*()_+-=[]{};:"|,.<>/?';
    $chars  = str_shuffle($chars);
    return substr($chars, 0, 40);
}
?>

 

相关文章:

  • 2021-10-22
  • 2021-11-28
  • 2022-12-23
  • 2021-10-20
  • 2021-09-19
  • 2021-12-09
  • 2021-12-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案