tools #31

Merged
Sieciech merged 9 commits from tools into dev 2021-08-28 19:28:21 +00:00
1 changed files with 15 additions and 0 deletions
Showing only changes of commit e6b52c6d87 - Show all commits

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();