Is there a way to use a *.properties file in PHP as you do in Java? I'd like to store some application-level constants in a properties or XML file and easily call them from throughout my code. Your guidance is much appreciated. Thanks.
|
|
PHP can natively load and parse You can also set up constants in an include file using If you're set on XML, look into PHP's XML functionality. The simplest solution is probably to use SimpleXML. |
|||||||||||
|
|
You can also use a PHP file containing an array to store data. Example: config.php
Then in another file:
|
|||
|
|
|
parse_ini_file doesn't have anything to do with the java Properties class. I have a function in my blog that does the exact same function as the Java one: http://blog.rafaelsanches.com/2009/08/05/reading-java-style-properties-file-in-php/
|
||||
|
|
|
Well, you could perfectly put some configuration in a properties file and do the parsing yourself. But in PHP it's not the appropriate format todo so. I would define some constants and put them in a seperate php config file (like config.php) and include this where needed. Other options would be to actually put the configuration in a xml file and use a xml library the read it. YAML (php.net) is also a popular option for simple readable configuration. |
|||
|
|