I need a good config file format. I plan on putting to table schema. Like symfony, ruby on rails, etc. What is the best file format for configuration file ? Yaml or XML or JSON encoded file ? Which is the best for this purpose ?
feedback
|
|
As others have stated, you have loads of options. Just don't invent (i.e. write parsers) such a thing yourself unless you have a really, really good reason to do so (can't think of any). Just evaluate your options:
For example, PHP provides very easy serialize() and unserialize() functions. The format, however, is not as easily readable / editable by humans (XML can also be hard to read, but not as hard as the PHP format. Python's pickle module is even worse.). If you ever need to access data with other languages, this is a bad choice. And think about others - I recently hat to parse PHP serialized data from the Horde project in a python project of mine! JSON is a much better choice because its human-readable (if its "pretty-printed", not in the compacted form!), human-editable and every major language has JSON-support nowadays. However, you will lose backwards compatibility, e.g. with python, JSON requires version 2.6+. | |||||||
feedback
|
|
You can easily read it using
| |||
|
feedback
|
|
JSON is a good choice, in my opinion. You could define your database schema as such:
Then just use json_decode to turn this into a PHP array. e.g.
This would print:
JSON is much easier to work with than XML in my opinion, and json_encode/decode is very fast so there's little overhead. In my opinion, it's also a lot more readable than XML and copes better with complex data structures than INI files. Some people prefer YAML, but there's really not much difference in syntax. | |||
|
feedback
|
|
XML is best for this purpose as most programming langauge privide API to read XML files. | |||||
feedback
|
|
What do you plan on putting in there? You have loads of options:
| |||||
feedback
|
|
Joomla recently switched from ini files to JSON encoded files. Encoding and decoding json using There is a drawback however: json is not easily human readable. You need to use a php script to encode your config file. You can use this solution well when you want to write your config in an administrator part of your website. | |||
feedback
|
|
my preference is
just like wordpress and countless other php applications use | |||
|
feedback
|
|
The guys have really given you good answers already. Personally I like .ini files outside your document root. Also make sure (if you're on a linux hosting env) that your file is only readable by your web server and not writable. You can then simply parse the INI file and use your configuration settings like that. (this is if you're using a language such as PHP or so, JavaScript ect won't work here.) But it's like they said. It all depends on what data you want to have in your config file and what you want todo with it. Regards Conrad c'',) | |||
|
feedback
|