Programming - PHP
6.
Codes in PHP can be commented using : - //
- #
- /* */
- <!-- -->
Answer
PHP supports 'C', 'C++' and Unix shell-style (Perl style) comments. To do a single line comment type "//" or "#" and multiple line PHP comment begins with " /* " and ends with " */ ".
Answer :
Option AExplanation :
PHP supports 'C', 'C++' and Unix shell-style (Perl style) comments. To do a single line comment type "//" or "#" and multiple line PHP comment begins with " /* " and ends with " */ ".
Jump to page number :