Ben
<target description="list of files to check permission" name="files-to-test">
<property name="filesToCheck" value=""/>
<php expression="file_get_contents('filesToCheck.txt')" returnProperty="filesToCheck"/>
<foreach list="${filesToCheck}" param="file" target="permission-test"/>
</target>
<target description="Test the permission of files that needs to be written" name="permission-test">
<touch file="${file}"/>
</target>
Farklı dosya konumları sadece bir listesi olan bir extenal dosyası (filesToCheck.txt) çağırır. Bu çalışıyor. Ama ben aynı dış dosyaya (filesToCheck.txt) belli bir anahtara göre belirli bir dosyaya erişmek istediğinizde benim PHP kodu aynı listeyi yeniden önlüyor.
Ben Phing belgelerine baktım ama herhangi bir dizi Görev bulamadık. Herkes etrafında bir iş biliyor mu veya yeni bir görev Phing bir dizi özellik taşıma için tek çözüm yaratıyor?