我认为代码非常难,但我无法弄清楚如何解决它。
我需要iframe工作,但是找不到将其作为代码而不是字符串内的文本读取的方法...
<div class="tab-pane" id="mounting">
<h1>Mounting</h1>
<?php
$a = strtolower($title);
if (strpos($a, 'vw') !== false){
if (strpos($a, 'brake disc') !== false){
echo '<iframe width="560" height="315" src="https://www.youtube.com/embed/QuyfFY4cvww" frameborder="0" allowfullscreen></iframe>';
}
}
?>
</div>
答案 0 :(得分:0)
当您使用PHP与HTML时,为什么不做这样的事情,
<div class="tab-pane" id="mounting">
<h1>Mounting</h1>
<?php
$title = 'brake disc vw';
$a = strtolower($title);
if (strpos($a, 'vw') !== false){
if (strpos($a, 'brake disc') !== false){
?>
<iframe width="560" height="315" src="https://www.youtube.com/embed/QuyfFY4cvww" frameborder="0" allowfullscreen></iframe>
<?php
}
}
?>
</div>
它基本上显示基于if条件的HTML,如果它的真实,它将不会显示。没有必要使用PHP回应它。