I'd like to comment some lines in my Zend application.ini
file.
Is it possible to comment lines? What is the syntax?
I simply could not find an answer.开发者_运维知识库
It's a general ini
format that comment lines begin with ;
; this is a comment
foo = bar
start the line with a semi-colon.
; This is a comment
[section]
key=value
Comments in PHP ini files (which I believe Zend makes use of) start with a ;
Semicolons (;) at the beginning of the line indicate a comment in ini file.
;(semicolon) in any .ini file..
精彩评论