get file content and assign to property in Phing -


is there way file content , assign property phing?

an equivalent ant:

<project name="foobar" default="foo">    <target name="foo">      <loadfile property="foo.bar" srcfile="foobar/moo.txt"/>      <echo>${foo.bar}</echo>    </target> </project> 

?

doesn't loadfile task you're after?


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

How can I fetch data from a web server in an android application? -

jquery - How can I dynamically add a browser tab? -