📜  动态更新 laravel .env 变量 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:17.757000             🧑  作者: Mango

代码示例1
/**
     * Update Laravel Env file Key's Value
     * @param string $key
     * @param string $value
     */
    public static function envUpdate($key, $value)
    {
        $path = base_path('.env');

        if (file_exists($path)) {

            file_put_contents($path, str_replace(
                $key . '=' . env($key), $key . '=' . $value, file_get_contents($path)
            ));
        }
    }