gpt4 book ai didi

php - PHP 和 Jquery 中倾斜和倾斜字符的自定义验证规则

转载 作者:搜寻专家 更新时间:2023-10-31 22:08:42 25 4
gpt4 key购买 nike

我需要对 PHP 和 Jquery 中的 tild(~) 和 tilt(`) 字符进行良好的验证。这是我所做的 Jquery 验证。

$.validator.addMethod("validSMS", function(value, element) {
if (value.indexOf('~') === -1 || value.indexOf('`') === -1)
{
return true;
}
else
{
return false;
}
}, "Tild and tilt Character is not allowed");

但我还需要另一种在 Jquery 和 PHP 中进行验证的好方法。

最佳答案

这是php版本,使用strpos

if (strrpos($mystring, "~") === false && strrpos($mystring, "`") === false ) { 
// $mystring has no tild(~) and tilt(`) chars
}

关于php - PHP 和 Jquery 中倾斜和倾斜字符的自定义验证规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14745948/

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