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