Multi-line comments in PHP start with ______ and end with ______.

  • // and //
  • /* and */
  • # and #
Multi-line comments in PHP start with /* and end with */. Everything between these symbols is considered a comment, even if it spans multiple lines. This is a helpful feature for when you want to add longer explanations or temporarily remove a block of code from execution. The other options are not used for multi-line comments in PHP. Learn more: https://www.php.net/manual/en/language.basic-syntax.comments.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *