+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.

Related questions

0 votes
asked Jun 22, 2019 in PHP by SakshiSharma
0 votes
asked Oct 17, 2023 in JavaScript by GeorgeBell
...