fork download
  1. <?php
  2. $hashtags=[2,44,6,7,8,55,5];
  3. $hashtags = array_slice($hashtags, 0, 5);
  4. var_export($hashtags);
Success #stdin #stdout 0.02s 25804KB
stdin
Standard input is empty
stdout
array (
  0 => 2,
  1 => 44,
  2 => 6,
  3 => 7,
  4 => 8,
)