Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.2] Support direct loading with a string #321

Merged
merged 3 commits into from
Jan 24, 2019
Merged

[3.2] Support direct loading with a string #321

merged 3 commits into from
Jan 24, 2019

Conversation

GrahamCampbell
Copy link
Collaborator

@GrahamCampbell GrahamCampbell commented Jan 24, 2019

Example usage, where $content is a string containing the content of some .env file:

<?php

use Dotenv\Environment\Adapter\ArrayAdapter;
use Dotenv\Environment\DotenvFactory;
use Dotenv\Loader;

$loader = new Loader([], new DotenvFactory([new ArrayAdapter()]));

$variables = $loader->loadDirect($content));

Why do we need the array adapter? This allows nested variables to work correctly, but avoid mutating your actual environment.'

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
@GrahamCampbell GrahamCampbell merged commit 736602f into vlucas:master Jan 24, 2019
@GrahamCampbell GrahamCampbell deleted the direct-load branch January 24, 2019 20:33
@GrahamCampbell GrahamCampbell changed the title Support direct loading with a string [3.2] Support direct loading with a string Jan 28, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant