You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no way to write a dollar sign without phpdotenv trying to evaluate it as a variable. This is fine, so long as you don't actually have a variable of that name, but will cause problems otherwise. Should we:
Move evaluation of nested variables to the parser, or at least have some more intelligent way of the parser to produce output so that its clear what variables are fair game for replacement.
Only allow variable evaluation within double quoted strings?
Add a way to prevent variable evaluation with an escape sequence?
Both 2 and 3 depend on 1.
The text was updated successfully, but these errors were encountered:
There is no way to write a dollar sign without phpdotenv trying to evaluate it as a variable. This is fine, so long as you don't actually have a variable of that name, but will cause problems otherwise. Should we:
Both 2 and 3 depend on 1.
The text was updated successfully, but these errors were encountered: