Programmatically edit a wp-config.php
file.
Quick links: Using | Options | How it works | Testing
$config_transformer = new WPConfigTransformer( '/path/to/wp-config.php' );
$config_transformer->update( 'constant', 'WP_DEBUG', 'true', array( 'raw' => true ) );
$config_transformer->add( 'constant', 'MY_SPECIAL_CONFIG', 'foo' );
$config_transformer->remove( 'constant', 'MY_SPECIAL_CONFIG' );
$config_transformer->update( 'variable', 'table_prefix', 'wp_custom_' );
$config_transformer->add( 'variable', 'my_special_global', 'foo' );
$config_transformer->remove( 'variable', 'my_special_global' );
if ( $config_transformer->exists( 'constant', 'MY_SPECIAL_CONFIG' ) ) {
// do stuff
}
if ( $config_transformer->exists( 'variable', 'my_special_global' ) ) {
// do stuff
}
Special behaviors when adding or updating configs are available using the options array.
In contrast to the "edit in place" strategy above, there is the option to normalize the output during a config update and effectively replace the existing syntax with output that adheres to WP Coding Standards.
Let's reconsider a poorly-formatted example:
define ( 'WP_DEBUG' ,
false, false )
;
This time running:
$config_transformer->update( 'constant', 'WP_DEBUG', 'true', array( 'raw' => true, 'normalize' => true ) );
Now we will get an output of:
define( 'WP_DEBUG', true );
Nice!
Suppose you want to change your ABSPATH
config (gasp!). To do that, we can run:
$config_transformer->update( 'constant', 'ABSPATH', "dirname( __FILE__ ) . '/somewhere/else/'", array( 'raw' => true ) );
The raw
option means that instead of placing the value inside the config as a string "dirname( __FILE__ ) . '/somewhere/else/'"
it will become unquoted (and executable) syntax dirname( __FILE__ ) . '/somewhere/else/'
.
The anchor string is the piece of text that additions will be anchored to.
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'anchor' => '/** Absolute path to the WordPress directory' ) ); // Default
By default, new configs will be placed before the anchor string.
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'placement' => 'before' ) ); // Default
$config_transformer->update( 'constant', 'BAZ', 'qux', array( 'placement' => 'after' ) );
By default, the separator between a new config and its anchor string is an EOL ("\n" on *nix and "\r\n" on Windows).
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'separator' => PHP_EOL . PHP_EOL ) ); // Default
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'separator' => PHP_EOL ) );
By default, when attempting to update a config that doesn't exist, one will be added. This behavior can be overridden by specifying the add
option and setting it to false
.
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'add' => true ) ); // Default
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'add' => false ) );
If the constant FOO
exists, it will be updated in-place. And if not, the update will return false
:
$config_transformer->exists( 'constant', 'FOO' ); // Returns false
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'add' => false ) ); // Returns false
Constants: https://regex101.com/r/6AeNGP/4
Variables: https://regex101.com/r/cSLZZz/4
Due to the unsemantic nature of the wp-config.php
file, and PHP's loose syntax in general, the WP Config Transformer takes an "edit in place" strategy in order to preserve the original formatting and whatever other obscurities may be taking place in the block. After all, we only care about transforming values, not constant or variable names.
To achieve this, the following steps are performed:
- A PHP block containing a config is split into distinct parts.
- Only the part containing the config value is targeted for replacement.
- The parts are reassembled with the new value in place.
- The old PHP block is replaced with the new PHP block.
Consider the following horrifically-valid PHP block, that also happens to be using the optional (and rare) 3rd argument for constant case-sensitivity:
define ( 'WP_DEBUG' ,
false, false )
;
The "edit in place" strategy means that running:
$config_transformer->update( 'constant', 'WP_DEBUG', 'true', array( 'raw' => true ) );
Will give us a result that safely changes only the value, leaving the formatting and additional argument(s) unscathed:
define ( 'WP_DEBUG' ,
true, false )
;
Any option supported by the add()
method can also be passed through the update()
method and forwarded along when the config does not exist.
For example, you want to update the FOO
constant in-place if it exists, otherwise it should be added to a special location:
$config_transformer->update( 'constant', 'FOO', 'bar', array( 'anchor' => '/** My special location' ) );
Which has the same effect as the long-form logic:
if ( $config_transformer->exists( 'constant', 'FOO' ) ) {
$config_transformer->update( 'constant', 'FOO', 'bar' );
} else {
$config_transformer->add( 'constant', 'FOO', 'bar', array( 'anchor' => '/** My special area' ) );
}
Of course the exception to this is if you are using the add => false
option, in which case the update will return false
and no config will be added.
- Regex will only match one config definition per line.
CORRECT
define( 'WP_DEBUG', true );
define( 'WP_SCRIPT_DEBUG', true );
$table_prefix = 'wp_';
$my_var = 'foo';
INCORRECT
define( 'WP_DEBUG', true ); define( 'WP_SCRIPT_DEBUG', true );
$table_prefix = 'wp_'; $my_var = 'foo';
- If the third argument in
define()
is used, it must be a boolean.
CORRECT
define( 'WP_DEBUG', true, false );
define( 'WP_DEBUG', true, FALSE );
define( 'foo', true, true );
define( 'foo', true, TRUE );
INCORRECT
define( 'WP_DEBUG', true, 0 );
define( 'WP_DEBUG', true, 'yes' );
define( 'WP_DEBUG', true, 'this comma, will break everything' );
$ composer global require phpunit/phpunit
$ composer install
$ phpunit