gpt4 book ai didi

javascript - 我想让我的 php 知道密码中是否有数字

转载 作者:行者123 更新时间:2023-11-28 11:57:06 24 4
gpt4 key购买 nike

我想知道一个字符串中是否有数字(PHP 代码)
这就是我所拥有的:

if (!preg_match('/0/',$p) || !preg_match('/1/',$p) || !preg_match('/2/',$p) || !preg_match('/3/',$p) || !preg_match('/4/',$p) || !preg_match('/5/',$p) || !preg_match('/6/',$p) || !preg_match('/7/',$p) || !preg_match('/8/',$p) || !preg_match('/9/',$p)){
echo "<p>The password need to contain atleast one number</p>";
exit();
}

最佳答案

这应该就是您要找的。

if (!preg_match('/[0-9]/',$p)) {
echo "<p>The password need to contain at least one number</p>";
exit();
}

关于javascript - 我想让我的 php 知道密码中是否有数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20750397/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com