fork download
  1. <?php
  2.  
  3. $_GET['retornar'] = '4';
  4. $ccs = [11,22,33,44,55,66];
  5.  
  6. $pedaco = array_slice( $ccs, 0, $_GET['retornar'] );
  7. foreach ($pedaco as $key=>$value) {
  8. echo $value;
  9. }
Success #stdin #stdout 0.02s 23592KB
stdin
Standard input is empty
stdout
11223344