欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php验证是否md5编码的代码

程序员文章站 2022-06-04 17:06:54
...
  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. ?>
复制代码