3v4l.org

run code in 300+ PHP versions simultaneously
<?php function pc_permute($items, $perms = array()) { if (empty($items)) { echo join(' ', $perms) . ", "; } else { for ($i = count($items) - 1; $i >= 0; --$i) { $newitems = $items; $newperms = $perms; list($foo) = array_splice($newitems, $i, 1); array_unshift($newperms, $foo); pc_permute($newitems, $newperms); } } } $chars = "01234567890"; $arr = str_split($chars); #$arr = array('peter', 'paul', 'mary'); pc_permute($arr); ?>

preferences:
43.03 ms | 402 KiB | 5 Q