Comments
<?php
// You can also use comments to leave out parts of a code line
$x = 5 /* + 15 */ + 5;
echo $x;
?>
# this is single-line comment
// tshi is another single-line comment
/* this is for  
multiple-lines 
comment 
block
*/
by otar datuadze
2 years ago
PHP
0
Pro tip: use ```triple backticks around text``` to write in code fences