php format 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 make a comment in php
// single line comment
/* multi line comment
hello
*/