在SilverStripe 3中,如何在模板文件中添加多行注释?
答案 0 :(得分:2)
单行注释可以使用<%-- my comment --%>
(或html方式<!-- my comment -->
完成,该方式将发送到浏览器,但隐藏不显示。)
据我所知,silverstripe模板中没有多行注释。
一个丑陋的工作将是<% if false %>
,就像这样:
<% if false %>
some
comment
text
here
<% end_if %>