Rumah > Artikel > pembangunan bahagian belakang > html5 - php html混编,有注释符号为什么还起作用
<code>$pfName='market_global'; ?> <!-- <?php if(($pfName == 'market_global')) { ?> --> <th style="width: 80px">GG</th> <!-- <?php } else { ?> --> <th style="width: 80px">IOS</th> <!-- <?php } ?> --> </code>
上班即使有注释符号,还是起作用的,为什么,去掉注释符号还是起作用????
why??
<code>$pfName='market_global'; ?> <!-- <?php if(($pfName == 'market_global')) { ?> --> <th style="width: 80px">GG</th> <!-- <?php } else { ?> --> <th style="width: 80px">IOS</th> <!-- <?php } ?> --> </code>
上班即使有注释符号,还是起作用的,为什么,去掉注释符号还是起作用????
why??
那种注释只能对html
其作用好吧!想注释php
在<?php ?>
里面加斜杠。例如<?php //if(($pfName == 'market_global')) { ?>
试试看
这个注释的是html代码,不是注释php
php代码依然会执行的
你写的这个是html的注释不是php的注释
php的注释有
/.../
//
我初学PHP的时候也有这样的错愕.<!---->
是HTML的注释符号,是讲给浏览器听的.
而PHP解释器只会认// /**/ #
这些PHP的注释符号.