Source of: /manual/en/language.basic-syntax.comments.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/language.basic-syntax.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'language.basic-syntax.comments.php',
1 => 'Comments',
),
'up' =>
array (
0 => 'language.basic-syntax.php',
1 => 'Basic syntax',
),
'prev' =>
array (
0 => 'language.basic-syntax.instruction-separation.php',
1 => 'Instruction separation',
),
'next' =>
array (
0 => 'language.types.php',
1 => 'Types',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="language.basic-syntax.comments" class="sect1">
<h2 class="title">Comments</h2>
<p class="para">
PHP supports 'C', 'C++' and Unix shell-style (Perl style) comments. For example:
</p><div class="informalexample">
<div class="example-contents programlisting">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br /> </span><span style="color: #007700">echo </span><span style="color: #DD0000">'This is a test'</span><span style="color: #007700">; </span><span style="color: #FF8000">// This is a one-line c++ style comment<br /> /* This is a multi line comment<br /> yet another line of comment */<br /> </span><span style="color: #007700">echo </span><span style="color: #DD0000">'This is yet another test'</span><span style="color: #007700">;<br /> echo </span><span style="color: #DD0000">'One Final Test'</span><span style="color: #007700">; </span><span style="color: #FF8000"># This is a one-line shell-style comment<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div><p>
</p>
<p class="simpara">
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 <i>// ... ?></i>
or <i># ... ?></i> WILL be printed:
?> breaks out of PHP mode and returns to HTML mode, and
<i>//</i> or <i>#</i> cannot influence that.
If the <a href="ini.core.php#ini.asp-tags" class="link">asp_tags</a> configuration directive
is enabled, it behaves the same with <i>// %></i> and
<i># %></i>.
However, the <i></script></i> tag doesn't break out of PHP mode in
a one-line comment.
</p>
<p class="para">
</p><div class="informalexample">
<div class="example-contents programlisting">
<div class="phpcode"><code><span style="color: #000000">
<h1>This is an <span style="color: #0000BB"><?php </span><span style="color: #FF8000"># echo 'simple';</span><span style="color: #0000BB">?></span> example.</h1><br /><p>The header above will say 'This is an example'.</p></span>
</code></div>
</div>
</div><p>
</p>
<p class="simpara">
'C' style comments end at the first <i>*/</i> 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.
</p>
<p class="para">
</p><div class="informalexample">
<div class="example-contents programlisting">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br /> </span><span style="color: #FF8000">/*<br /> echo 'This is a test'; /* This comment will cause a problem */<br /> </span><span style="color: #007700">*/<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div><p>
</p>
</div><?php manual_footer(); ?>