|
Single Line Comment
Single line comment is started with two forward slashes (//) or a single hash sign(#) .
// Comment
or
# Comment
Multiline Comment
Multiline Comment being with forward slash followed by an asterisk sign(/*) and end with asterisk followed by forward slash (*/) .
/*
This is a multi line commnet sample.
Between that you can comment multiple block of code
*/
<?php// Opening tag - Single Line comment
#is also single line comment
/*
This is multi line comment. with opening and closing of comment.
Block of comment code between that tags.
*/
print "Hello World!";
// Closing tag - Single Line comment ?>
|
|