di_container.php

PHPマスター

Explorer

C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP
初級10
中級10
上級10
エキスパート5
マスター5
di_container.php
trait_use.php
generator_read.php
attribute_route.php
fiber_task.php
Python40
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
di_container.php
Click to focus
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Container {
   private array $bindings = [];
   public function bind(string $key, Closure $fn): void {
       $this->bindings[$key] = $fn;
   }
   public function get(string $key): mixed {
       if (!isset($this->bindings[$key])) {
           throw new Exception("Not bound: {$key}");
       }
       return $this->bindings[$key]($this);
   }
}
0WPM0%0:000/353(0%)|Ln 1, Col 1
UTF-8PHP

関連する練習問題