hindbiswas/phpdotenv
最新稳定版本:v1.0.0
Composer 安装命令:
composer require hindbiswas/phpdotenv
包简介
PHP .env files loader and manager
README 文档
README
Small .env file loader to load and manage Env variables for PHP project. It also has the functionality to load variables from .env.example iteractively
Installation
To install via composer, run:
composer install hindbiswas/phpdotenv
Load Env Variable
<?php require_once __DIR__ . '/vendor/autoload.php'; use Hindbiswas\Phpdotenv\DotEnv; $dotEnv = new DotEnv(__DIR__); // Location where .env file exists $dotEnv->load(); // To access variables // getenv() $variable_value = getenv('TEST_NAME'); // $_ENV[] $variable_value = $_ENV['TEST_NAME'];
Generate from Example file
<?php use Hindbiswas\Phpdotenv\DotEnvFromExample; require_once __DIR__ . '/vendor/autoload.php'; $env = new DotEnvFromExample(); $env->from(__DIR__ . '/path/to/example/'); $env->to(__DIR__); // This line is not required if destination an source is same $env->put();
This will create a .env following the template of .env.example and if there are {{...}}, it will treat it as variable and ask for value.
So,
if .env.example:
HOLA=amigos
OGENKI={{desuka}}
Now if the generator file is run: php generator.php It'll prompt for the value in place of {{desuka}} and use it's value in generated .env:
Enter the value for `desuka`
>>
So, putting value Hai will generate file:
HOLA=amigos OGENKI=Hai
统计信息
- 总下载量: 42
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-03