Home > Backend Development > PHP Tutorial > php生成会员卡做跳4,7的操作,该怎么解决

php生成会员卡做跳4,7的操作,该怎么解决

WBOY
Release: 2016-06-13 13:30:50
Original
1147 people have browsed it

php生成会员卡做跳4,7的操作
if(preg_match( "/4/", $strMaxcardid+$i)){ $cardCount ++ ; continue; } 想问一下,我想同时跳4,7该怎么写呢

------解决方案--------------------

PHP code
$strMaxcardid = 699; //上一个号码
while(preg_match('/(4|7)+/', ++$strMaxcardid)) $strMaxcardid ++;
echo $strMaxcardid; //800
<br><font color="#e78608">------解决方案--------------------</font><br>
Copy after login
PHP code
//这样应该比较高效了,不需要用正则
$strMaxcardid = 699;
$ar = str_split(++$strMaxcardid);
foreach($ar as $k => $v) {
    if ($v == 4 || $v == 7) {
        $ar[$k] ++;
        break;
    }
}

$strMaxcardid = join('', $ar);
echo $strMaxcardid; //800 <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template