次のコードを持っている:
switch ($options['algorythm'])
{
case 'jigsaw':
$result = $this->jigsaw($options['count'], $options['length']);
break;
case 'freddy':
$result = $this->freddy($options['count'], $options['length'], $options['characters']);
break;
}
for($i=0; $i < $options['count']; $i++)
{
echo $result."<br/>";
}
$result
で定義された時間内に関数を実行するにはどうすればよいcount
ですか?今のところ、同じ結果を何度も繰り返すだけだからです。