I heard someone say that there is, so I was wondering.
HTML comment:
<!-- Comment goes here. -->
PHP comment:
<?php // Comment goes here. ?>
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Unlike HTML comments, PHP comments don't show up in the final output. That is often desirable, as comments are usually internal notes that are none of anybody's business. |
|||||||||||||||||||||
|
|
PHP comments will not be visible in the source on the client, where HTML comments will. So the question is: do you want the comment to be readable by the end user? |
|||||
|
|
PHP comments do not show up in the output HTML as other users have stated. This has 2 main effects:
|
|||||||||||||
|
|
Small HTML comments can be useful for front-end developers, for example specifying the identifier of a closing tag in large files:
These comments can be extremely helpful, and have little or no effect on the page size. PHP comments should be kept to a minimum in your display code, because there shouldn't be an awful lot of PHP to comment (although this is an entirely different subject). It goes without saying that you should only ever comment PHP with PHP comments, and HTML with HTML comments. If you ever find yourself having to write long HTML comments to explain some quirky HTML to your front-end developers, it's probably a bad sign. |
||||
|
|
|
Really depends on what you are commenting. In addition to all other answers, I've something that can really matter. From time to time, we coders would need to comment out a block of code like:
Assume that length of
Zero bytes is sent to the visitor and there is no PHP processing. vs
10 KB is still sent to the visitor and PHP runs this huge-y loop for nothing. Of course, if you are using a revision control system (e.g. git, svn), such comments (comments that cover running code rather than descriptions) should really be deleted altogether. |
|||
|
|
|
sometimes html comments are useful when you need to get info that cannot be rendered in html by the browser. for example you need to know the server's ip that sent the html page, you cannot show in the html page.. you print it as an html comment so you can check that info in the html source code |
|||||||||||||
|