mirror of https://github.com/YGGverse/Pulsar.git
yggverse
7 months ago
2 changed files with 39 additions and 3 deletions
@ -0,0 +1,34 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
declare(strict_types=1); |
||||||
|
|
||||||
|
namespace Yggverse\Pulsar\Model; |
||||||
|
|
||||||
|
class Environment |
||||||
|
{ |
||||||
|
private array $_argument; |
||||||
|
|
||||||
|
public function __construct( |
||||||
|
array $argv |
||||||
|
) { |
||||||
|
foreach ($argv as $value) |
||||||
|
{ |
||||||
|
if (preg_match('/^(?<key>[^=]+)=(?<value>.*)$/', $value, $argument)) |
||||||
|
{ |
||||||
|
$this->_argument[mb_strtolower($argument['key'])] = (string) $argument['value']; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public function get( |
||||||
|
string $key |
||||||
|
): ?string |
||||||
|
{ |
||||||
|
$key = mb_strtolower( |
||||||
|
$key |
||||||
|
); |
||||||
|
|
||||||
|
return isset($this->_argument[$key]) ? $this->_argument[$key] |
||||||
|
: null; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue