如何在php数组中插入mailto链接?

时间:2015-09-28 01:02:43

标签: php html

我想在我的php页脚中插入mailto链接。我应该怎么做呢?到目前为止这是我的代码。

 <?php $names = array("&copyDusan Biga", "&copyStian Stord", "&copyAsle Foss");
   $arrlength = count($names);

   for($x = 0; $x < $arrlength; $x++) {
   echo $names[$x];
   echo "<br>";
}
?>

这是基本的页脚内容。所以我希望它在名称旁边有一个mailto链接。所以&#34;&amp; copyDusan Biga(mailto link here)&#34; 。提前致谢!

1 个答案:

答案 0 :(得分:0)

这不是一种非常专业的方法,但正如你所说,如果是为了练习,那就没事了,我们都必须学习。

10000000000000选项中的一个是:

<?php 
$names = array("&copyDusan Biga", "&copyStian Stord", "&copyAsle Foss");
$emails = array("biga@mail.yes", "stian@mail.yes", "foss@mail.yes");
$arrlength = count($names);

for($x = 0; $x < $arrlength; $x++) {
   echo $names[$x]. " - <a href='mailto:".$emails[$x]."'>".$emails[$x]."</a>";
   echo "<br>";
}
?>

更好的是:

<?php
$names = array(
"&copyDusan Biga"=>"biga@mail.yes", 
"&copyStian Stord"=>"stian@mail.yes", 
"&copyAsle Foss"=>"foss@mail.yes");

foreach($names as $name=>$email) {
     echo $name. " - <a href='mailto:".$email."'>".$email."</a>";
     echo "<br/>";
}