電話超連結

按下連結時會自動開啟撥號程式打電話

連結格式 tel:電話號碼

<a href="tel:<?=$mobile;?>"><?=$mobile;?></a>
<a href="tel:<?=$tel;?>"><?=$tel;?></a>

國際標準

+國碼-電話號碼,台灣號碼如果開頭為0要把0拿掉

$call_mobile_pos = strpos($mobile, '0');
if( $call_mobile_pos === 0) {
    $call_mobile = substr($mobile,1); 
} 
<a href="tel:+886-<?=$call_mobile;?>"><?=$mobile;?></a>

市話區碼開頭為0也要移除

if( strpos($tel, '0' ) === 0) {
     $call_tel = substr($tel,1);
}
<a href="tel:+886-<?=$call_tel;?>"><?=$tel;?></a>