<?php namespace app\common\library; /** * 国密加密 */ class MakeKey { /* * 制作患者唯一主键 * str 制作主键的字符串 */ public static function makePatientKey($str): string { $key = md5($str); return $key; } }