3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = 'asd/trara/bebe'; if (substr_count($string, '/') < 2) { $split = explode('/', $string); } else { $split = array_map( function($value) { return implode('/', $value); }, array_chunk(explode('/', $string), 2) ); } return var_dump($split);

preferences:
55.02 ms | 402 KiB | 5 Q