<!DOCTYPE html>
<html>
<body>
<p>Using comments to ignore parts of a code line:</p>
<?php
$x = 5 /* + 15 */ + 5;
echo $x;
?>
</body>
</html>
Using comments to ignore parts of a code line:
10