gpt4 book ai didi

php - 当在 for 循环 PHP 中使用正则表达式时

转载 作者:行者123 更新时间:2023-12-03 23:30:03 25 4
gpt4 key购买 nike

我需要在循环 PHP 中使用正则表达式,我遇到了如下问题。当我编写这段代码时,它工作正常:

$phone_number= '2222463';

for ($i=1; $i <= 9; $i++) {
if((preg_match("/^[$i]{3}/", $phone_number))){
return true;
}
}

但下面的代码不返回 true :

for ($i=1; $i <= 9; $i++) {
if((preg_match("/^[$i]{$i}/", $phone_number))){
return true;
}
}

Note : {2}=={$i}

最佳答案

$i = 3;
echo "{3}", PHP_EOL, "{$i}";
// {3}
// 3

{$...}complex PHP string interpolation syntax 的一部分,并且 {$i} 被解释为一个变量插值。您需要在此处转义/加倍括号:

"/^[$i]{{$i}}/"

关于php - 当在 for 循环 PHP 中使用正则表达式时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52162779/

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