-1

如何在一段 php 代码的“和”之间插入 html。

我想在它说的地方插入 html 代码hello- 但它不会让我。

 $this->setError($postName, ucfirst($postName)." hello.");
} else if(strlen($postVal) > intval($max)) {

我想在它打招呼的地方插入这段代码。

 <div class="alert alert-success">
  <button type="button" class="close" data-dismiss="alert">&times;</button>
          <strong>Thank You!</strong> We hope to get back to you shortly.
 </div>
4

2 回答 2

1
    $str = '<div class="alert alert-success">
                <button type="button" class="close" data-dismiss="alert">&times;</button>
                <strong>Thank You!</strong> We hope to get back to you shortly.
            </div>';

    $this->setError($postName, ucfirst($postName).$str);
} else if(strlen($postVal) > intval($max)) {
于 2012-09-19T12:52:08.410 回答
0

您只需将该 HTML 代码添加到变量中,然后简单地连接到您想要的位置。

所以类似于:

$html = '<div class="alert alert-success">
    <button type="button" class="close" data-dismiss="alert">&times;</button>
    <strong>Thank You!</strong> We hope to get back to you shortly.
</div>';

    $this->setError($postName, ucfirst($postName).$html);
} else if(strlen($postVal) > intval($max)) {

希望这可以帮助。:) (对不起,如果这属于评论,实际上不能在问题中发表评论。)

于 2012-09-19T12:53:18.050 回答