6

我知道星号拨号计划中的单行注释是“;” 例如

 ;exten => s,1,Playback(project/eligibility_points_msc)

但是拨号计划中的多行注释使用什么?

4

1 回答 1

11

Asterisk 还允许我们创建块注释。块注释是从一行开始并持续多行的注释。块注释以字符序列开头

;--

并继续跨越多行,直到字符序列

--;

遇到。块注释在 --; 之后立即结束 遇到。

[section-name]
setting=true
;-- this is a block comment that begins on this line
and continues across multiple lines, until we
get to here --;
于 2013-02-13T07:11:48.890 回答