0

你好我有这个变量是字符串。

$this->product_output_html = <<< HTML

一些 HTML 代码

  HTML;

我希望在他的类测试中添加一个像这样的 php for 循环

if ($admin->errors) { foreach ($admin->errors as $error) { echo ''.$error.''; } }

我试图添加但不工作。我在 class="test"> 之后和测试之前添加了 '' 但仍然无法正常工作。我做错了什么?

多谢

4

2 回答 2

0

代替

echo ".$error.";

echo $error;
于 2012-11-03T00:39:24.797 回答
0

尝试类似的东西

$this->product_output_html = 'Start of html code as a string';
if ($admin->errors) {
  foreach ($admin->errors as $error) {
    $this->product_output_html .= '<br />'.$error;
  }
}
$this->product_output_html .= '<br />End of html code as a string';
echo $this->product_output_html;
于 2012-11-03T00:43:11.790 回答