tools
CureNetMulti/pipeline/head This commit looks good Details

This commit is contained in:
Sieciech 2021-08-05 22:48:24 +02:00
parent f52e611c67
commit e6b52c6d87
1 changed files with 15 additions and 0 deletions

15
tools/putenv.php Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace Tools;
class PutEnv {
private string $file;
private string $key;
private string $value;
public function __construct() {
$argv = $_SERVER['argv'];
print_r($argv);
}
}
new PutEnv();