tool design php comments code example
Example 1: php proper function comments
/**
* This function compiles a message that tells you how great coffee is
*
* @param string $compliment A nice word to describe coffee
* @param integer $score A score out of 10
*/
Example 2: how to create comments in php
Answer: Use the Syntax "// text" (single line) and "/* text */"
(multi-line)