我知道星号拨号方案中的单行注释是";“,例如
;exten => s,1,Playback(project/eligibility_points_msc)但是在拨号方案中,什么是用于多行注释的?
发布于 2013-02-13 15:11:49
Asterisk还允许我们创建block comments。块注释是从一行开始并连续几行的注释。块注释以字符序列开头
;--并跨多行继续,直到字符序列
--;都会遇到。块注释在遇到--;之后立即结束。
[section-name]
setting=true
;-- this is a block comment that begins on this line
and continues across multiple lines, until we
get to here --;https://stackoverflow.com/questions/14848092
复制相似问题