正規表現を使った非常にシンプルなコードなので参考にしてください
コードをコピー コードは以下の通りです:
function is_md5($password) {
return preg_match("/^ [a-z0-9 ]{32}$/", $password);
}
http://www.bkjia.com/PHPjc/748161.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/748161.html技術記事コードは非常に単純で、正規表現を使用しています。次のようにコードをコピーします。 function is_md5($password) { return preg_match("/^[a-z0-9]{32}$/", $)パスワード); }...