<!DOCTYPE html>
<html>
<body>
<p>使用注释来忽略代码行的部分内容:</p>
<?php
$x = 5 /* + 15 */ + 5;
echo $x;
?>
</body>
</html>