RosettaCodeData/Task/Look-and-say-sequence/PHP/look-and-say-sequence.php

20 lines
252 B
PHP
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
<?php
2015-02-20 00:35:01 -05:00
function lookAndSay($str) {
return preg_replace_callback('#(.)\1*#', function($matches) {
return strlen($matches[0]).$matches[1];
}, $str);
2013-04-10 21:29:02 -07:00
}
$num = "1";
2015-02-20 00:35:01 -05:00
foreach(range(1,10) as $i) {
echo $num."<br/>";
$num = lookAndSay($num);
2013-04-10 21:29:02 -07:00
}
2015-02-20 00:35:01 -05:00
2013-04-10 21:29:02 -07:00
?>