Writing Comments in PHP

Writing Comments in PHP

Instructor-svgAl-Mamun Sarkar
Apr 22 , 2020

The following code shows how to write a single line as well as multiline comments in PHP Programming.

 

Single Line comment:

< ?php
// a single-line comment

# Another single-line comment
?>

 

Multiline Comment:

<?php
/*
a multiple-lines 
This is another line
a line
*/
?>

 

  • Share On:
  • fb
  • twitter
  • pinterest
  • instagram