예제 #1
0
<?php

require_once 'imports.php';
// I want an economical car, coloured blue...
$car_factory = new CarFactory();
$car = $car_factory->build(VehicleFactory::ECONOMICAL, Vehicle::BLUE);
// I am a "white van man"...
$van_factory = new VANFactory();
$van = $van_factory->build(VehicleFactory::POWERFUL, Vehicle::WHITE);
// Create a red sports car
$sporty = VehicleFactory::make(VehicleFactory::CAR, VehicleFactory::POWERFUL, Vehicle::RED);
?>
<html>
	<body>
		<p><?php 
echo $car;
?>
</p>
		<p><?php 
echo $van;
?>
</p>
		<p><?php 
echo $sporty;
?>
</p>
	</body>
</html>
예제 #2
0
<?php

function __autoload($name)
{
    require_once "classes/{$name}.php";
}
$t = Timer::instance();
$t->newTimePoint('Begin of requuest');
VehicleFactory::create(VehicleFactory::TYPE_CAR)->move();
echo '<br />';
$t->newTimePoint('After "Car" creation');
VehicleFactory::create(VehicleFactory::TYPE_PLANE)->move();
echo '<br />';
$t->newTimePoint('After "Plane" creation');
$bookAdapter = new BookAdapter(new Book('Nikolay D.', 'It woluld be nice to have my own book :]'));
echo "{$bookAdapter->getAuthorAndTitle()}<br />";
$t->newTimePoint('Prepare library.');
$booksDb = array(new Book('A 1', 'T 1'), 1, new Book('A 1', 'T 2'), 2, new Book('A 2', 'T 1'), 3, new Book('A 3', 'T 1'), 4, new Book('A 3', 'T 2'), 5);
$library = new Library('FMI Library');
for ($i = 0; $i < count($booksDb); $i += 2) {
    $library->addBook($booksDb[$i], $booksDb[$i + 1]);
}
echo "Library content: total => {$library->getBooksCount()}, distinct => {$library->getDistinctBooksCount()}<br />";
$book = $booksDb[0];
$t->newTimePoint('Library - prepared, testing proxy implementation.');
echo 'Proxy test...<br />';
$proxy = new LibraryProxy($library);
if ($proxy->hasQuantityFor($book)) {
}
echo "{$book} is in the library.<br />";
$ticket = $proxy->lendBook($book);