vote up 0 vote down star

I am writing a PHP application that will have the ability to edit settings through a web interface. I didn't mean for the user (and actually, it will only be admins) to be able to load the file up in a text editor, but rather, they make a change using a form, and that will change the settings file (and do other things as well).

At this stage in the development, settings are stored in a PHP file, for example:

define ('UPLOAD_DIR','uploads/');
define ('DISPLAY_NUM',true);
$names = array('a' => 'b','c'=>'d','e'=>'f');

However, parsing arrays (and they get more complicated (i.e multilevel nested) than the above), doesn't seem so fun. And because specific settings can be added and removed, reading the entire file, and then writing out all the settings again, doesn't seem fun either.

What are the advantages and disadvantages to using the following formats? (And any others that I missed out):

  • Custom XML
  • INI (able to use parse_ini_file)

(Using a database is not suitable due to the requirements for the project. I understand in many situations a database would be prefered, just not in this case.)

If you were unable to use a database, and had to store settings that could be edited using a web interface, what would you do?

(Note: This is a different question to this one, where settings can't be changed, it's PHP file all the way. And yes, the setup does currently write out a PHP file with the correct settings.)

flag
1  
What do you mean by "parsing arrays"? Can't you just load them directly into your application? Or do you mean that building them in the first place doesn't seem like much fun (that would make more sense to me)? – Steven Oxley May 11 at 11:48
I can load them directly (via an include()), however, then I would have to keep track of what options have been used, and which have been edited. I would rather load the file directly into the form. Is that clearer? – Alya May 11 at 12:49

6 Answers

vote up 0 vote down check

OK, I didn't get any sort of answer I was looking for. Here's the sort of thing I was expecting.

INI

  • Storing settings in an INI file might be appropriate for simple settings which you want the user to edit by hand.
  • However, creating complex arrays is not easy, and would require some mental acrobatics to understand which heading is at which level of the array.
  • Reserved words, which must not be used anywhere in the file, include: yes, no, true, and false, this might be problematic.
  • Constants can be used in the file.
  • No built in method of writing out INI files.

XML

  • Can use the SimpleXML Extension, which "provides a very simple and easily usable toolset" to turn XML into an object that can then be processed using the normal methods.
  • Allows the use of very complex arrays.
  • Possible to edit by hand, if required.
  • Can use external tools to verify the validity of the file.
  • Many many XML processors available for PHP.

YAML

Remember: no database. Requires being able to use complex arrays.

link|flag
vote up 0 vote down

I have used a two step approach. The variables and their names are stored in the database with an interface that gives the user the ability to change them. When they change them a file gets saved onto the server and then referenced throught out the application (The changes are alos saved back to the DB). Makes updating easy and makes backups simple - no need to backup the files, just backup the database. The resulting files are just .inc files that are in the format $variableName = 'variablevalue';

link|flag
Yes, except, from the original post: (Using a database <em>is not</em> suitable due to the requirements for the project. I understand in many situations a database would be prefered, just not in this case.) – Alya May 12 at 9:25
vote up 0 vote down

PHP has built in functions for editing and parsing INI files, which use a plain-text format to store program settings.

link|flag
The OP mentions that he's aware of these functions but wants to know "What are the advantages and disadvantages to using the following formats?" – nickf May 11 at 13:52
I'm not aware of any PHP native Editing capabilities for ini files. – duckyflip May 19 at 12:35
vote up 1 vote down

If you're not committed to using XML, you may like to consider YAML. I've only used it with Ruby, but a quick Google suggests there are a few options for PHP support. TBF, the links there include some arguments against using YAML with PHP, but YMMV.

link|flag
code.google.com/p/spyc is the YAML loader that the Symfony framework uses. Also, I think Symfony is a strong case for the use of YAML with PHP. – Steven Oxley May 11 at 11:46
vote up 0 vote down

I'd recommend a custom XML file, that way your config will scale well and you can use PHP XML libraries to access it.

A quick example:

<myconfig>
  <define>
    <name>UPLOAD_DIR</name>
    <value>uploads/</value>
  </define>
  <define>
    <name>DISPLAY_NUM</name>
    <value>true</value>
  </define>
  <array id="names">
    <value index="a">b</value>
    <value index="c">d</value>
    <value index="e">f</value>
  </array>
</myconfig>
link|flag
vote up 0 vote down

I wouldn't like the idea of someone having direct access over settings, so it's important to provide an interface to act as a buffer, preventing deliberate attacks and ensuring clean output.

With that in mind the choice of server side format is not important at all, as long as you can interface with it correctly all other problems can be worked around.

link|flag
So, what format would make it easier to provide such an interface? I didn't mean for them to be able to load the file up in a text editor and go for it. I'll edit and make that clear. – Alya May 11 at 11:33

Your Answer

Get an OpenID
or

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