1. Go to this page and download the library: Download rammewerk/container library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Let the container instantiate the concrete class
$container = $container->bind(LoggerInterface::class, FileLogger::class);
// Bind an already instantiated class
$container = $container->bind(LoggerInterface::class, new Logger());
// Add a list of bindings
$container = $container->bindings([
CacheInterface::class => RedisCache::class,
QueueInterface::class => ClosureQueue::class,
]);
// Bind a closure to instantiate a class
$container = $container->bind(TemplateResponse::class, static function(Container $c) {
return $c->create(TwigTemplate::class, [TEMPLATE_DIR])
})
class Logger {
public function log(string $message): void {
echo "Log: $message";
}
}
class PaymentProcessor {
public function __construct(
private Logger $logger
) {}
public function processPayment(float $amount): void {
$this->logger->log("Processing payment of $$amount.");
}
}
class PaymentGateway {
public function __construct(
private PaymentProcessor $processor
) {}
public function pay(float $amount): void {
$this->processor->processPayment($amount);
}
}
$logger = new Logger();
$process = new PaymentProcessor($logger);
$gateway = new PaymentGateway($process);
$gateway->pay(10); // Log: Processing payment of $10
$container = new Container();
$gateway = $container->create(PaymentGateway::class);
$gateway->pay(20) // Log: Processing payment of $20
class PaymentGateway {
public function __construct(
private PaymentProcessor $processor,
private string $processName // Newly added string parameter
) {}
}
$container = new Container();
$gateway = $container->create(PaymentGateway::class, ['PayPal']);
$gateway->pay(20); // Log: Processing payment of $20
class ClassA {
public function __construct() {
echo 'Class A initialized'
}
public function hello(): void {
echo 'Class A says hello'
}
}
class ClassB {
public function __construct() {
echo 'Class B initialized'
}
}
class ClassC {
public function __construct(
public ClassA $a,
private ClassB $b
) {
echo 'Class C initialized';
}
}
// If the DI does not support lazy proxy:
$classC = $container->get(ClassC::class);
echo 'Here we go:';
$classC->a->hello();
$container = new Container();
$classC = $container->create(ClassC::class);
echo 'Here we go:';
$classC->a->hello();
// Returns a new container to preserve immutability
$container = $container->share([ClassA::class]);
$instance1 = $container->create(ClassA::class);
$instance2 = $container->create(ClassA::class);
var_dump($instance1 === $instance2); // true
interface NewsMailer {}
class MailChimp implements NewsMailer {}
class Newsletter {
public function __construct(private readonly NewsMailer $mailer) {}
}
// Returns a new container instance to maintain immutability
$container = $container->bind(NewsMailer::class, MailChimp::class);