Comments in PHP
| Introduction | |
| Single-line | |
| Multi-line |
Introduction
There are two types of comments in PHP: single-line and multi-line.
Go
lang has the same comment syntax as PHP
Single-line
<?php
// Single-line comment
Multi-line comment
<?php
/*
Comment
That has
multiple lines
*/