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

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

WBOY
WBOYOriginal
2016-06-13 10:23:36904browse

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>
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>
Statement:
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