Append all array values to another property using phing

242 views Asked by At

How can I make this on phing?

foreach (array as values) {
    $data .= $values
}

something like that. Appending all the array values on property name $data.

1

There are 1 answers

2
alok.kumar On

suppose you have array

<?php
      $array1;
    foreach($array1 as values)
      {
         $data .= $values
      }
?>