Skip to content

Instantly share code, notes, and snippets.

@trq
Last active August 29, 2015 13:59
Show Gist options
  • Save trq/10642825 to your computer and use it in GitHub Desktop.
Save trq/10642825 to your computer and use it in GitHub Desktop.
<?php
function write_config($key, $value) {
require 'config.php';
$config[$key] = $value;
file_put_contents('config.php', "<?php\n\n" . var_export($config, true));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment