PHP 中的注释

在 PHP 中,我们使用 // 来编写单行注释,或者使用 /* 和 */ 来编写大的注释块。[code]

<?php //This is a comment /* This is a comment block */ ?> [/code]