Comments are lines ignored by the PHP interpreter — useful for notes and disabling code.
// Single-line comment
# Also single-line (shell style)
/*
Multi-line comment
spans many lines
*/
/**
* DocBlock comment
* Used by IDEs and documentation generators
* @param string $name
* @return string
*/