PHP_ITFA_3_WS_25_26/Aufgabe_31/ex.php
2025-09-03 12:00:35 +02:00

16 lines
220 B
PHP

<?php
class Ex
{
function ShowMessage(string $str)
{
echo "<p>Dies ist die Nachricht: ".$str."</p>";
}
function GiveNumber()
{
echo "<p>Hier eine Zufallszahl: ".random_int(0,100)."</p>";
}
}
?>