Is it possible to use inline comments for .ini files with PHP?

vfclists picture vfclists · Sep 12, 2009 · Viewed 32.2k times · Source

Is it possible and safe to use inline comments for .ini files with PHP?

I prefer a system where the comments are inline with the variables, coming after them.

Are the some gotchas concerning the syntax to be used?

Answer

n1313 picture n1313 · Sep 12, 2009

INI format uses semicolon as a comment character. It accepts them anywhere in the file.

key1=value
; this is a comment
key2=value ; this is a comment too