All pastes #610950 Raw Edit

jmccaffrey

public php v1 · immutable
#610950 ·published 2007-07-09 18:29 UTC
rendered paste body
<?php 	$letters = range('a', 'z');	permutate($letters, 3);		function permutate(&$letters, $depth, $string = "")	{		if ($depth == 0) {			echo "Combo: $string\r\n";			return;		}				foreach ($letters as $l) {			permutate($letters, $depth - 1, $string . $l);		}	}?>