fork download
  1. <?php
  2.  
  3. $ranking[] = ['App', 'Views'];
  4. $options[] = ['A', 'B'];
  5.  
  6. $flat = iterator_to_array(new RecursiveIteratorIterator(new RecursiveArrayIterator($options)), 0);
  7. var_dump(array_merge($flat, $ranking[0]));
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
array(4) {
  [0]=>
  string(1) "A"
  [1]=>
  string(1) "B"
  [2]=>
  string(3) "App"
  [3]=>
  string(5) "Views"
}