- 5
php
Fill in the blank to make the text a comment: _This is a comment echo 'This is a test';
3 Réponses
+ 3
In PHP code, a comment is a line that is not executed as part of the program. You can use comments to communicate to others so they understand what you're doing, or as a reminder to yourself of what you did.
A single-line comment starts with //
Multi-line comments are used for composing comments that take more than a single line.
A multi-line comment begins with /* and ends with */.
0
0
/*,*/