防止解析评论

Ada*_*dam 0 html php browser

有没有办法在我的php/html文件中隐藏评论?

我想添加标记,我不希望人们能够在浏览器中查看源代码.

这可能吗?

<!-- Prevent this comment from being viewed -->
<?php...
Run Code Online (Sandbox Code Playgroud)

提前致谢.

Joh*_*hnP 7

如果您将注释添加为PHP,人们将无法在浏览器中看到它.

<div> 
   <!-- This HTML comment can be seen by people -->
   <?php //But this PHP comment can only be seen by me :) ?>
</div>
Run Code Online (Sandbox Code Playgroud)

http://en.wikipedia.org/wiki/PHP