Php comments

From wikinotes
Revision as of 01:21, 9 July 2020 by Will (talk | contribs) (Created page with "<source lang="bash"> →‎* Do something * * @param $name * @return string: function get_hello_message($name) { // comment →‎foo bar baz: } </so...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/** Do something
 *
 * @param $name
 * @return string
 */
function get_hello_message($name)
{
    // comment

    /*
    foo
    bar
    baz
    */
}