这是我的数组,我想从数组中删除索引,最小长度为3个字符
Array
(
  [0] => #FCBayern
  [1] => won
  [2] => a
  [3] => Championsleague
  [4] => match
  [5] => with
  [6] => 2
  [7] => goals
  [8] => difference
)
Run Code Online (Sandbox Code Playgroud)
我想这样出来
Array
(
[0] => #FCBayern
[1] => Championsleague
[2] => match
[3] => with
[4] => goals
[5] => difference
Run Code Online (Sandbox Code Playgroud)
)