Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/exercises/klasser/

ovn_klass1.php
ovn_klass2.php
ovn_klass3.php
ovn_klass4.php
ovn_klass5.php
ovn_klass6.php
ovn_klass7.php

ovn_klass5.php

44 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Klasser 5</title>
</head>
<body>
  <?php
  
class Boll {
    private 
$färg;
    private 
$radie;

    public function 
__construct($färg$radie) {
      
$this->färg $färg;
      
$this->radie $radie;
    }

    public function 
getFärg(){
      echo 
"Bollen är "$this->färg"<br>";
    }
    public function 
getRadie(){
      echo 
"Radien är ".$this->radie"<br>"
    }
  }

  class 
Fotboll extends Boll {}
  class 
Badboll extends Boll {}

  
$Fotboll1 = new Fotboll("Vit""7");
  
$Fotboll1->getFärg();
  
$Fotboll1->getRadie();

  
$badboll1 = new Fotboll("blå""8");
  
$badboll1->getFärg();
  
$badboll1->getRadie();




  
?>
</body>
</html>