php doc comments example
Example 1: comments in php
//For a single line comment use //:
//this is a comment too
//for multi-line comments use /* and */:
/* <--start of multi-line comment
this is a comment
this is a comment too (end of multi-line comment)-->*/
Example 2: how to create comments in php
Answer: Use the Syntax "// text" (single line) and "/* text */"
(multi-line)