php - `$` variable in .env not the same after loading through symfony-dotenv

one text

Solution:

The $ sign has a special meaning so to insert a literal dollar you need to either quote it or escape it:

TEST='123123123!!!123123123$$LOST$$testtesttest~~~tiltiltiltil'
TEST=123123123!!!123123123\$\$LOST\$\$testtesttest~~~tiltiltiltil

Source