Mülkiyet dosyada İşletmeye phing birden fazla değer içermelidir

0 Cevap php

As far as I know it is not posssible to have an array of values in a property file. What would be the best solution to store multiple values in a property?

örneğin mülkiyet dosyanın parçası

# directory definitions 
# containing e.g. CSS, Javascript, ...
project.dirname_css = css
project.dirname_js = javascript

İstediğim gibi özellikleri bir dizidir:

# directory definitions 
# containing e.g. CSS, Javascript, ...
project.dirname_css = [css,portal_specific]
project.dirname_js = [javascript,portal_specific]

to loop them in the build.xml
Any suggestions how to do this?
I could imagine to do divide values by ; and explode them in the build.xml. Any better suggestions?

0 Cevap