PHP comment
PHP comments are similar to HTML comments. They begin with a special character sequence and all characters thereafter will be ignored.
Purpose:Code must be commented in order to understand the logic, when was the code created and by whom. Different tags and syntaxes can be commented for future reference.
Single line - Ways to comments
//Commented line
#commented line
Multiple lines – Ways to comment
/* this is
A sample comment */