PHP - 字符串到html

时间:2015-09-04 10:56:43

标签: php html

我在php中有一个字符串数组。它看起来像这样:

$array = ['text-1' => '<p>Hello</p><span class="my-custom-class">random text here</span>'];

当我将它回显到我的html中时,它不会将标签转移到html中,而是将其显示在数组中。我怎么能把它转移到HTML?

感谢您提出任何建议

2 个答案:

答案 0 :(得分:0)

我们走了

foreach($array as $key => $value) {
    echo "<!--begin $key-->".$value."<!-- end $key -->";
}

或者如果你想缓冲一些东西以推动一次大写

$output = "";
foreach($array as $key => $value) {
    $output .= "<!--begin $key-->".$value."<!-- end $key -->";
}
echo $output;

答案 1 :(得分:0)

你可以试试这个:

$array = array('text' => '<p>Hello</p><span class="my-custom-class">random text here</span>');
foreach ($array as $key => $value) {
  echo htmlentities($value);
}