在php中,在注释符号以后行结束以前,或php结束标记以前的全部内容都是注释。php
// here is a comment ?> here is not
在上面代码行中,关闭标签以前的文本“here is a comment”是注释的一部分。而关闭标签以后的文本“here is not”将被当作是html,由于它位于关闭标签以外。html