如何防止输出html标签?

时间:2011-02-12 07:30:47

标签: php

我目前的代码是:

<h2 id="comment_title">vistor comments</h2>  
<div class="count">
  <?php 
    $count = comment_num($nid);
    if($count>0){
        echo $count'comments';
    } else {
        echo '';        
    }
  ?>
</div>

现在,我想知道如何更改上面的代码以获得此效果:

$count > 0时,它应该输出html标签,并且可以使用一些css样式。

<h2 id="comment_title">vistor comments</h2>and $count'comments';

$count <= 0时,请勿输出html标签。并且不要使用任何CSS样式。

<h2 id="comment_title">vistor comments</h2> ;

1 个答案:

答案 0 :(得分:0)

<h2 id="comment_title"><?php echo $count?> visitor comments</h2></div>