PHP code example of amber / container

1. Go to this page and download the library: Download amber/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/ */

    

amber / container example snippets


use Amber\Container\Container;

$container = new Container();

$container->bind($key, $value);

$container->bind($class);

$container->get($key);

$container->has($key);

$container->unbind($key);

$container->bindMultiple([$key => $value]);

$container->getMultiple($keys);

$container->unbindMultiple($keys);

$container->make($class);

$container->register($class);

$container->singleton($class);

$container->getClosureFor($class, $method);