fork download
  1. <?php
  2. $arr = ['A', 'B', 'C', 'D'];
  3.  
  4. $newArr = array_filter($arr, function($val) {
  5. return $val < 3;
  6. }, ARRAY_FILTER_USE_KEY);
  7.  
  8. var_dump(implode('/', $newArr));
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
string(5) "A/B/C"