+1 vote
in PHP by
How to do single and multi line comment in PHP?

1 Answer

0 votes
by

PHP single line comment is made in two ways:

Using // (C++ style single line comment)

Using # (Unix Shell style single line comment)

PHP multi-line comment is made by enclosing all lines within.

...