Code (Text) pasted on 2018-11-18, 21:28 Raw Source
- <?php
- $array = array(
- 0 => array(
- 'agc4.png',
- 't5.png'
- ),
- 1 => array(
- 'test.png',
- 'test2.jpg'
- ),
- 2 => array(
- 't5.png',
- 'agc4.png',
- 't3.png'
- ),
- 3 => array(
- 'test.png',
- 'test2.jpg',
- 'input.jpg'
- ),
- 4 => array(
- 'agc_r6.png',
- 'agc_tr6.png'
- ),
- 5 => array(
- 'foobar.jpg',
- 'test.jpg'
- ),
- 6 => array(
- 'test.png',
- 'test2.jpg',
- 'input.jpg',
- 'test1.jpg'
- ),
- 7 => array(
- 'test.png',
- 'test2.jpg',
- 'input.jpg',
- 'test1.jpg',
- 'foo.png'
- )
- );
- // should be:
- $array = array(
- 0 => array( // [0] [2]
- 'agc4.png', // from [0] and [2]
- 't5.png', // from [0] and [2]
- 't3.png' // from [2]
- ),
- 1 => array( // [1] [3] [6] [7]
- 'test.png', // from [1] and [3] and [6] and [7]
- 'test2.jpg', // from [1] and [3] and [6] and [7]
- 'input.jpg', // from [3] and [6]
- 'test1.jpg', // from [6] and [7]
- 'foo.png' // from [7]
- ),
- 2 => array( // [5]
- 'foobar.jpg', // from [5]
- 'test.jpg' // from [5]
- )
- );