[ create a new paste ] login | about

Link: http://codepad.org/i0B5X8lW    [ raw code | output | fork ]

Mani7TAM - PHP, pasted on Mar 6:
1
2
3
4
5
6
7
8
9
10
<?php
$array = Array(
          Array(image_path => '3blocks-02.png'),
          Array(image_path => '2blocks-02.png')
);


foreach ($array as $key => $value) {
  print_r($value['image_path']); 
}


Output:
1
3blocks-02.png2blocks-02.png


Create a new paste based on this one


Comments: