gpt4 book ai didi

php - preg_match 验证警告

转载 作者:行者123 更新时间:2023-12-02 18:37:22 25 4
gpt4 key购买 nike

我有一个正则表达式,可以验证以 7 或 8 或 9 开头的 10 位印度手机号码。下面是我编写的以下代码:

if(!preg_match("/(^[7-9]{1}[0-9]{9}$)/", $mobile))
{
return false;
}

其中 $mobile 保存 10 位数的手机号码。但是我收到警告 Warning: preg_match() [function.preg-match]: Compilation failed: Nothing to Repeat at offset 0

真的无法弄清楚这里出了什么问题!救命!

最佳答案

通常,如果您需要检查括号,则必须像这样编写正则表达式:/^([7-9]{1}[0-9]{9})$/。否则,/^[7-9]{1}[0-9]{9}$/ 的工作方式相同。

关于php - preg_match 验证警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17192766/

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