/* This is an typical example of multiple line comments section in PHP */ $a = 1 + 2; /*$b = 2 + 1; $c = 3 + 1;*/ $d = 4 + 2; // multi-line comment cannot be nested /* This is an multi-line comment */ which has nested commenting code */
Hello World!