fork(1) download
  1. <?php
  2.  
  3. $array = [["1.","COTV_LITE(1800)"],["2.","COTV_PREMIUM(2200)"]];
  4.  
  5. echo implode('<br>', array_map(function($a) { return implode(' ', $a); }, $array));
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
1. COTV_LITE(1800)<br>2. COTV_PREMIUM(2200)