PHP Comments code is not executed. it's only for information. PHP supports 'C', 'C++' and Unix shell-style (Perl style) comments.
//echo 'Hello'; //this is single line comment in c++ style #echo 'Hello'; #this is single line comment in shell-style style
/* This is a multi line comment example in php */
$a = 2 /* + 3 */ + 4; echo $a;