PHP Comments

Comments are ignored by the PHP engine but help developers understand the code.

Example:
<?php
    // Single-line comment

    # Another single-line comment

    /*
      Multi-line comment
      This can span multiple lines
    */
?>

👉 Explanation:

  • // → Single-line comment.
  • # → Another way to write single-line comments.
  • /* ... */ → Multi-line comments.
PHP Tutorial