Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to comment some stuff in my Zend application.ini, but I can't find

a) if it's at all possible

b) what the syntax is

Sorry for such a small question but I simply could not find an answer.

share|improve this question

5 Answers

up vote 19 down vote accepted

It's a general ini format that comment lines begin with ;

; this is a comment
foo = bar
share|improve this answer

start the line with a semi-colon.

; This is a comment
[section]
key=value
share|improve this answer

Comments in PHP ini files (which I believe Zend makes use of) start with a ;

share|improve this answer

Semicolons (;) at the beginning of the line indicate a comment in ini file.

share|improve this answer

;(semicolon) in any .ini file..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.