Nieuw lid |
|
iets korter kan ook
<?php
function aap($score)
{
return strlen($score) < 2 ? ' '.$score : $score;
}
//testje
$ar = array(14 => 4, 14 => 4, 7 => 0, 8 => 4, 10 => 4);
foreach ($ar as $res => $val)
{
echo aap($res).'-'.$val."<br />\n";
}
?>
<?php function aap($score) { return strlen($score) < 2 ? ' '.$score : $score; } //testje $ar = array(14 => 4, 14 => 4, 7 => 0, 8 => 4, 10 => 4); foreach ($ar as $res => $val) { echo aap ($res).'-'.$val."<br />\n"; } ?>
|