據我所知,在屬性文件中有值的數組是不可能的。 將多個值存儲在屬性中的最佳解決方案是什麼?屬性文件中的Phing屬性應該包含多個值
例如屬性文件的一部分
# directory definitions
# containing e.g. CSS, Javascript, ...
project.dirname_css = css
project.dirname_js = javascript
我想要的是像屬性數組:
# directory definitions
# containing e.g. CSS, Javascript, ...
project.dirname_css = [css,portal_specific]
project.dirname_js = [javascript,portal_specific]
循環他們在build.xml
任何建議,如何做到這一點?
我可以想象做分割值;並在build.xml中展開它們。 有什麼更好的建議?
屬性文件是一個ini文件嗎? – Gordon
我不確定它是否是ini文件。它的結構定義在http://phing.info/docs/guide/current/chapters/appendixes/AppendixF-FileFormats.html#PropertyFileFormat –