16 lines
220 B
PHP
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>";
|
|
}
|
|
}
|
|
|
|
?>
|