Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the syntax for comments in Zend Frameworks application.ini?

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.

like image 780
Niels Bom Avatar asked May 12 '11 08:05

Niels Bom


People also ask

What is application ini?

The application. ini file stores the main settings for the application. The file is split in different sections, each defining an environment: production, staging and development. Each environment can have different settings.

Is Zend Framework Good?

When it comes to PHP frameworks, Zend is counted among the best. Zend Framework offers lots of benefits for creating feature-rich and dynamic web solutions. MVC features and a strong component library have made Zend a popular PHP framework for creating a myriad of web solutions.


1 Answers

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

; this is a comment
foo = bar
like image 112
James C Avatar answered Oct 12 '22 02:10

James C