PHP:将if语句返回到HTML元素

时间:2014-04-27 13:40:15

标签: javascript php html

在同一个文档中使用PHP和HTML的组合时,如何将if语句的值返回到特定的HTML元素中。

例如。使用原生JavaScript,我想写一下:

var myVariable = "This will get appended";
var div = document.querySelector('.mydiv');

if ( test != functionResult  ) {
div.innerHTML = myVariable;
}

<div class="mydiv"></div>

我还在学习PHP,但据我所知,你可能会这样做以实现同样的目标:

$myVariable = "This will get appended";

if ( $test != $functionResult  ) {
    $div = $myVariable; 
}


<div><?php echo $div ?></div>

这是此函数的正确PHP语法吗?

1 个答案:

答案 0 :(得分:1)

这就是我所解释的你所寻找的:

<div>
<? if($test!=$functionresult): ?>
    This will get appeneded
<? endif; ?>
</div>

或者,如果您不希望div显示它是否为假:

<? if($test!=$functionresult): ?>
    <div> This will be appended </div>
<? endif; ?>