PHP
PHPでソースコードにコメントを埋め込む
ソースコード中にコメントを埋め込みます。//は、//以降の文字列をコメントとして扱います。
//は、関数や変数への代入など、プログラム文の後ろに続けて書くことができます。
#も//と同じように使用することができます。
/* 〜 */は、囲まれた部分(〜)をコメントとして扱います。
/* */では複数行のコメントを書くことができます。
関数や変数への代入など、プログラム文の中に埋め込むこともできます。
/* */の中に/* */を入れ子にして書くことはできません。
comment.php
<?php // This is one line comment echo "One line comment can be written after statement\n"; // This is one line comment # This is one line comment echo "One lin comment can be written with // and #\n"; # This is one line comment /* This comment style can be written in multi lines like the following */ /* line 1 line 2 */ /* This comment style can be embedded in statement */ echo "This echo statement line includes " /* comment */. "comment\n"; ?>
実行結果
$ php comment.php One line comment can be written after statement One lin comment can be written with // and # This echo statement line includes comment