php unique comments style code example
Example 1: comments in php
//For a single line comment use //:
//this is a comment too
//for multi-line comments use /* and */:
/* <--start of multi-line comment
this is a comment
this is a comment too (end of multi-line comment)-->*/
Example 2: php comment
// I'm a single, line comment
# I am another single line comments using #
/*
And I am a
multiline comment
*/