Answers for "php proper function comments"

PHP
10

php comment

// This is a single-line comment

# This is also a single-line comment

/*
This is a multiple-lines comment block
that spans over multiple
lines
*/
Posted by: Guest on March-03-2021
2

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
 */
Posted by: Guest on April-06-2020

Browse Popular Code Answers by Language