block comment in php code example
Example 1: how to make a comment in php
// single line comment
/* multi line comment
hello
*/
Example 2: block comment php
/* This is a multi line comment
yet another line of comment */
// single line comment
/* multi line comment
hello
*/
/* This is a multi line comment
yet another line of comment */