fork download
  1. <?php
  2. $ids = array(239, 243, 267);
  3. print_r($ids);
  4. foreach($ids as $pictureID)
  5. {
  6. $filename = '';
  7. $_pictureID = (int)$pictureID;
  8. echo $_pictureID;
  9.  
  10. //reszta kodu
  11. }
  12.  
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 239
    [1] => 243
    [2] => 267
)
239243267