A shortened version of weblog.

A shortened version of weblog.

PHP Comments Syntax

  • Programming
  • 11 May 2022
  • 266 Views
  • Sathiyamoorthy V

A PHP script can be placed anywhere in the document.A comment in PHP code is a line that is not executed as a part of the program. Its only purpose is to be read by someone who is looking at the code.

Comments can be used to:

1. Let others understand your code

2. Remind yourself of what you did - Most programmers have experienced coming back to their own work a year or two later and having to re-figure out what they did. Comments can remind you of what you were thinking when you wrote the code.

Syntax for single-line comments

<!DOCTYPE html>
<html>
<body>

<?php
// This is a single-line comment

# This is also a single-line comment
?>

</body>
</html>

Syntax for multiple-line comments

<!DOCTYPE html>
<html>
<body>

<?php
/*
This is a multiple-lines comment block
that spans over multiple
lines
*/
?>

</body>
</html>

RELATED POST

04 May 2022   |   Programming
PHP Syntax & Case Sensitivity
Read More
27 April 2022   |   Programming
Bootstrap 5 Introduction
Read More
25 April 2022   |   Programming
Node.js Introduction
Read More
11 May 2022   |   Programming
Bootstrap 5 Basic Page Example
Read More
12 May 2022   |   Programming
Bootstrap 5 Containers
Read More
19 May 2022   |   Programming
Bootstrap 5 Colors
Read More
PHP Comments Syntax
https://blogbyte.in/blog-details/?cid=2&pid=21

LEAVE A COMMENT

+