예제 #1
0
<?php

require_once "Automobile.php";
$make = 'vw';
$model = 'bug';
$color = "papayawhip";
$car1 = new Automobile($make, $model, $color);
echo $car1->getDescription();
$yourCar = new Automobile('audi', 'A4', 'pink');
echo $yourCar->getDescription();
die;
<?php

require_once "Automobile.php";
$make = 'vw';
$model = 'bug';
$color = 'papayawhip';
$car1 = new Automobile($make, $model, $color);
echo $car1->getDescription() . PHP_EOL;
$yourCar = new Automobile('audi', 'zippy-fast', 'pink');
echo $yourCar->getDescription() . PHP_EOL;
예제 #3
0
<?php

require_once "Automobile.php";
$make = "vw";
$model = "bug";
$color = "blue";
$car1 = new Automobile($make, $model, $color);
echo $car1->getDescription();