/*
for multiple-line comment
this is also a comment block
and this one too
*/
// and #
// this is for Single line comment
# also For a single-line comment
/*... */
# - /*... */ For inline comment
$sum = 9 /* maybe + 16 */ + 17;
echo $sum;