在php中显示电话号码作为链接?

时间:2016-02-22 11:52:12

标签: php wordpress

我想在我的网站上显示一个电话号码作为“telephonelink”。我在我的模板中用以下php代码显示电话号码:

<?php if($employeeObj->getEmail() != "" && $employeeObj->getEmail() != "-"){ ?>
                            <tr>
                                <td colspan="2"><?=$employeeObj->getEmail()?></td>
                            </tr>

如何在这个PHP代码中将电话号码实现为链接?

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

可以按照以下方式完成:

<?php if($employeeObj->getEmail() != "" && $employeeObj->getEmail() != "-"){ 
$phone = str_replace("/", "", $employeeObj->getEmail());
$phone = str_replace(" ", "", $phone);
?>
<tr>
<td colspan="2"><a href="callto:<?= $phone ?>"><?= $phone ?><a/></td>
</tr>
<?php } ?>