使用此代码返回电话号码:
<a href="tel:<?php $stel = get_field('fl_telephone');echo $stel; ?>">
但变量fl_telephone
的格式为
+44 (0) 1234 567 890
我需要将其转换为:
+441234567890
即。没有(0)和空格。在javascript中我找到了这个解决方案但是如何在wordpress中实现我的函数代码的常规表达式?
$('a[href^="tel:"]').attr('href', function(_,v){
return v.replace(/\(0\)|\s+/g,'')
});
答案 0 :(得分:2)
我相信你可以这样做:
$stel = '+44 (0) 1234 567 890';
$stel = preg_replace( '/\(0\)|\s+/', '', $stel );
有关详细信息,请查看preg_replace函数。