U kunt hiervoor omgevingsvariabelen gebruiken. PHPFog biedt een manier om omgevingsvariabelen in te stellen in de App Console> Env. Variabelen tabblad voor uw app.
Maak eenvoudig alle omgevingsvariabelen die u nodig hebt op zowel uw lokale computer als in de App Console:
Voorbeeld:
Lokale computer:bewerk uw .bash_profile
APP_HOST=localhost
APP_DATABASE=mydatabase
PHPfog-app-console:
APP_HOST=production.mysqlserver.com
APP_DATABASE=proddatabase
Open ze vervolgens vanuit uw php-app:
$db_host = getenv("APP_HOST");
$db_name = getenv("APP_DATABASE");