Is there any standard way to concatenate variables of an .ini-file?
The .ini-file is parsed by PHP, so I know that it's possible to do it in PHP, but is it possible inside an .ini-file?
Example for the file:
; definition of the server root
[root]
path=/var/path/to/server/root/
url=http://www.domain.xx/
And I'd like to define some "subpaths", I'd like something like this:
; definition of the server root
[root]
path=/var/path/to/server/root/
url=http://www.domain.xx/
; tree definition
[tree]
upload=/subpath/to/upload/directory/
upload_path=CONCATENATE(root.path,tree.upload)
upload_url=CONCATENATE(root.url,tree.upload)
Is this possible?
If not, is there a filetype used for configs where this is possible?