从 - foreach循环php中检索值和格式

时间:2014-02-23 09:25:49

标签: php foreach

我有一个foreach循环

它根据字段中是否有任何内容检索条目和显示。

但是现在我需要在HTML电子邮件中显示所有这些条目,它不会让我按照正常的方式进行。

我必须生成一个输出所有循环的$值,这样我就可以在我的电子邮件模板中显示输出的HTML。

关于我如何让$ allitems等于这样的任何帮助:

Go to sleep<br/>Wake up<br/>Make your bed

这是我的代码

$mydata= json_decode($row['bits']);

for ($x=1; $x<=9; $x++) { 

   $item = "item_$x"; 

   if (isset($mydata->$item) && !empty($mydata->$item)) { 

      $items = '&#10004; '.$mydata->$item; 

   }

   $allitems = explode("<br/>",$items);

}

我说我的代码适用于其他所有目的,除非我需要收集数据并在html生成的电子邮件中显示。

提前致谢, 强尼

1 个答案:

答案 0 :(得分:2)

你能不能把它们组合成一个字符串?

$str = ""; // Initialise the empty string prior to the for loop.
for(/* code */) {
    $str .= "woop ";
}

echo $str; // woop woop woop if forloop runs three times