适用于html返回函数的php语法

时间:2016-11-24 09:15:59

标签: php syntax

正在返回的php函数中if语句的正确语法是什么。静态输出是我目前的方式,但我想将其转换为动态输出。

这是静态输出:

function get_html () {
  $output = '';
  $output.= '<div class="commentCount">2</div>';
  return $output;   
}

这是动态输出:

function get_html () {
  $output = '';
  $output.= '<div class="commentCount">
  <?php if ($extractor->isConnected())   {
  // Comment Count
  echo $extractor->commentCount("blog".$id);
  }?></div>';
return $output; 
}

1 个答案:

答案 0 :(得分:1)

我希望你不要想象你可以将PHP脚本发送到浏览器来实现那里!但是这将输出div中的计数,如果这就是你想做的事情

function get_html () {
    $output = '';
    $output.= '<div class="commentCount">';
    if ($extractor->isConnected()) {
        $output .= $extractor->commentCount("blog".$id);
    }
    $output .= '</div>';
    return $output; 
}