">
当前位置:Gxlcms > PHP教程 > php验证是否md5编码的代码

php验证是否md5编码的代码

时间:2021-07-01 10:21:17 帮助过:19人阅读

  1. /**
  2. 验证md5编码
  3. @func: is_md5
  4. @param string $password
  5. */
  6. function is_md5($password) {
  7. return preg_match("/^[a-z0-9]{32}$/", $password);
  8. }
  9. ?>

人气教程排行