MakeKey.php 280 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\library;
  3. /**
  4. * 国密加密
  5. */
  6. class MakeKey
  7. {
  8. /*
  9. * 制作患者唯一主键
  10. * str 制作主键的字符串
  11. */
  12. public static function makePatientKey($str): string
  13. {
  14. $key = md5($str);
  15. return $key;
  16. }
  17. }