Skip to content

Instantly share code, notes, and snippets.

@mahammad
Created February 11, 2023 05:51
Show Gist options
  • Save mahammad/406cf062cd7a00a9b2b51b24c057b88a to your computer and use it in GitHub Desktop.
Save mahammad/406cf062cd7a00a9b2b51b24c057b88a to your computer and use it in GitHub Desktop.
Php Laravel env put
<?php
$path = base_path('.env');
$test = file_get_contents($path);
if (file_exists($path)) {
file_put_contents($path, str_replace('APP_ENV=local', 'APP_ENV=production', $test));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment