Comments
Comments
PHP supports 'C', 'C++' and Unix shell-style (Perl style) comments. For example:
<?php
echo 'Coders today'; // This is a one-line c++ style comment
/* This is a multi line comment
yet another line of comment */
echo 'Coderztoday';
echo 'Coders today'; # This is a one-line shell-style comment
?>
<?php
echo 'Coders today'; // This is a one-line c++ style comment
/* This is a multi line comment
yet another line of comment */
echo 'Coderztoday';
echo 'Coders today'; # This is a one-line shell-style comment
?>
The "one-line" comment styles only comment to the end of the line or the current block of PHP code, whichever comes first. This means that HTML code after // ... ?> or # ... ?> WILL be printed: ?> breaks out of PHP mode and returns to HTML mode, and // or # cannot influence that.
<h1>This is an <?php # echo 'simple';?> example</h1>
<p>The header above will say 'This is an example'.</p>
<p>The header above will say 'This is an example'.</p>
'C' style comments end at the first */ encountered. Make sure you don't nest 'C' style comments. It is easy to make this mistake if you are trying to comment out a large block of code.
Example
<?php
//======================================================================
// CATEGORY LARGE FONT
//======================================================================
//-----------------------------------------------------
// Sub-Category Smaller Font
//-----------------------------------------------------
/* Title Here Notice the First Letters are Capitalized */
# Option 1
# Option 2
# Option 3
//Multi Line comment
/*
* This is a detailed explanation
* of something that should require
* several paragraphs of information.
*/
// This is a single line comment.?>
//======================================================================
// CATEGORY LARGE FONT
//======================================================================
//-----------------------------------------------------
// Sub-Category Smaller Font
//-----------------------------------------------------
/* Title Here Notice the First Letters are Capitalized */
# Option 1
# Option 2
# Option 3
//Multi Line comment
/*
* This is a detailed explanation
* of something that should require
* several paragraphs of information.
*/
// This is a single line comment.?>
Comments
Post a Comment