fix putenv
This commit is contained in:
parent
905fe32546
commit
5180445f7c
|
@ -2,11 +2,15 @@
|
||||||
|
|
||||||
namespace Tools;
|
namespace Tools;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
|
||||||
class PutEnv {
|
class PutEnv {
|
||||||
|
|
||||||
private string $file;
|
private string $file;
|
||||||
private string $key;
|
private string $key;
|
||||||
private string $value;
|
private string $value;
|
||||||
private array $content;
|
private array $content;
|
||||||
|
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
$argv = $_SERVER['argv'];
|
$argv = $_SERVER['argv'];
|
||||||
$argc = sizeof($argv);
|
$argc = sizeof($argv);
|
||||||
|
|
Loading…
Reference in New Issue