我想在我的网站上显示一个电话号码作为“telephonelink”。我在我的模板中用以下php代码显示电话号码:
<?php if($employeeObj->getEmail() != "" && $employeeObj->getEmail() != "-"){ ?>
<tr>
<td colspan="2"><?=$employeeObj->getEmail()?></td>
</tr>
如何在这个PHP代码中将电话号码实现为链接?
任何人都可以帮助我吗?
答案 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 } ?>