Källkod
Följande filer och mappar finns under mappen webbserverprogrammering.
Mappar visas till vänster och filer till höger. Klicka på en fil eller mapp för att öppna nedan eller visa dess innehåll.
webbserverprogrammering/exercises/classes_dice/
10 filer
Dice.php
DiceImage.php
Histogram.php
dice_1.php
dice_2.php
dice_3.php
dice_4.php
dice_5.php
dice_6.php
dice_7.php
DiceImage.php
Histogram.php
dice_1.php
dice_2.php
dice_3.php
dice_4.php
dice_5.php
dice_6.php
dice_7.php
DiceImage.php
16 lines UTF-8 Windows (CRLF)
<?php
class DiceImage extends Dice {
const FACES = 6;
function __construct() {
parent::__construct(self::FACES);
}
public function getRollsAsImages() {
$rolls = parent::getRolls();
foreach ($rolls as $roll) {
echo "<img src='../../img/dice{$roll}.png' alt='Tärning sida {$roll}'>";
}
}
}
?>