PHP Comments

Single line comments


<?php
// This is single line comment
# This is also single line comment
?>

Multi line comments


<?php
/*
This is multi line comment.
Another line
*/
?>