Link.FYI

Pastebin

Create New My Pastes

Code (Text) pasted on 2018-11-18, 21:28 Raw Source

  1. <?php
  2.  
  3. $array = array(
  4.         0 => array(
  5.             'agc4.png',
  6.             't5.png'
  7.         ),
  8.         1 => array(
  9.             'test.png',
  10.             'test2.jpg'
  11.         ),
  12.         2 => array(
  13.             't5.png',
  14.             'agc4.png',
  15.             't3.png'
  16.         ),
  17.         3 => array(
  18.             'test.png',
  19.             'test2.jpg',
  20.             'input.jpg'
  21.         ),
  22.         4 => array(
  23.             'agc_r6.png',
  24.             'agc_tr6.png'
  25.         ),
  26.         5 => array(
  27.             'foobar.jpg',
  28.             'test.jpg'
  29.         ),
  30.         6 => array(
  31.             'test.png',
  32.             'test2.jpg',
  33.             'input.jpg',
  34.             'test1.jpg'
  35.         ),
  36.         7 => array(
  37.             'test.png',
  38.             'test2.jpg',
  39.             'input.jpg',
  40.             'test1.jpg',
  41.             'foo.png'
  42.         )
  43.     );
  44. // should be:
  45. $array = array(
  46.     0 => array(         // [0] [2]
  47.         'agc4.png',     // from [0] and [2]
  48.         't5.png',       // from [0] and [2]
  49.         't3.png'        // from [2]
  50.     ),
  51.     1 => array(          // [1] [3] [6] [7]
  52.         'test.png',      // from [1] and [3] and [6] and [7]
  53.         'test2.jpg',     // from [1] and [3] and [6] and [7]
  54.         'input.jpg',     // from [3] and [6]
  55.         'test1.jpg',     // from [6] and [7]
  56.         'foo.png'        // from [7]
  57.     ),
  58.     2 => array(          // [5]
  59.         'foobar.jpg',    // from [5]
  60.         'test.jpg'       // from [5]
  61.     )
  62. );