Show sourcecode
The following files exists in this folder. Click to view.
index.html
ovn_kls1.php
ovn_kls2.php
ovn_kls3.php
ovn_kls4.php
ovn_kls5.php
ovn_kls6.php
ovn_kls1.php
24 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<?php
class Ball {
public $radie;
public $color;
function egenskaper($radie, $color) {
$this->radie = $radie;
$this->color = $color;
}
}
$enboll = new Ball();
$enboll->egenskaper("10cm", "grön");
echo "Min boll har radien ". $enboll->radie. " och färgen ". $enboll->color;
?>
</html>