Hyvor Developer
  Home   Download   Copy
Code
<?php

// this is a single-line comment

# this is a single-line comment too

/*
	This is a multi-line comment
	This line is a comment
*/

// to remove a part of code
echo 5 /* + 2 */  + 5;
Result