How to store credentials for PHP scripts on a Windows machine?
1 answer
+4
−0
Solution 1: Honestly, it is a best practice used by current frameworks (symfony, laravel) to use an .env file that you will have into the .gitignore. On the otherside, you will commit a .env.dist or .env.example file with the basic template of your file.
Exanple of a DB .env.dist file:
DATABASE_NAME=MyDb
DATABASE_PASSWORD=MyPassword
DATABASE_URL=127.0.0.1
DATABASE_PORT=3306
Solution 2: Another way of doing would be to store into the system itself environment variables, this is often used when you're deploying onto a production server and you don't wan't to share an .env file over the internet. So they will be manually input on the host machine.
After that you can access those variables with getenv('your_var') or using the alias $_SERVER['your_var']
or $_ENV['your_var']
1 comment
IMHO, configuration files outside Git are the way to go. The only other thing is to make sure they are not in any web-accessible directory - i.e., so that a messed up web page won't get easy access. — manassehkatz 8 months ago