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/
5 filer
classes_1.php
37 lines UTF-8 Windows (CRLF)
<?php
error_reporting(-1); // Report all type of errors
ini_set('display_errors', 1); // Display all errors
ini_set('output_buffering', 0); // Do not buffer outputs, write directly
?>
<!DOCTYPE html>
<html lang="sv">
<head>
<title>Klasser 1</title>
<meta charset="utf-8">
<style type="text/css">
body {
font-family: Arial;
}
</style>
</head>
<body>
<h2>Boll</h2>
<?php
class Ball {
public $color;
public $radius;
}
$myBall = new Ball();
$myBall->color = "grön";
$myBall->radius = "4cm";
echo "Färg: $myBall->color<br>Radie: $myBall->radius";
?>
</body>
</html>