PHP Comments CODE
Single line comment
// $variable = 'Value';
Another single line comment
# $variable = 'Value';
Comment for multiple lines
/*$variable = 'Value';
$second_variable = 'Value 2';
$third_variable = 'Value 3';*/
Inline comment
$number = 5 /* - 5  */ + 5;
by Valeri Tandilashvili
2 years ago
PHP
Comments
5
Pro tip: use ```triple backticks around text``` to write in code fences