我希望有一双新鲜的眼睛看着我的问题,这让我发疯。任何帮助,将不胜感激。
如果用户在电话号码的开头输入第一个“44”,则仅从两行 PHP 代码中尝试删除:
$telephone = '44789562356';
$telephone = str_replace(' ','',$telephone);
$telephone = str_replace('+44','0',$telephone);
if(strpos($telephone,"44")==0){
$telephone = substr($telephone,2);
$telephone = '0'.$telephone;
}
为什么它会从所有电话号码中去掉“7”?