PHP Class Search_Replace_Command, wp-cli

Inheritance: extends WP_CLI_Command
Show file Open project: wp-cli/wp-cli

Public Methods

Method Description
__invoke ( $args, $assoc_args ) Search/replace strings in the database.

Private Methods

Method Description
esc_like ( $old )
get_columns ( $table )
is_text_col ( $type )
php_export_table ( $table, $old, $new )
php_handle_col ( $col, $primary_keys, $table, $old, $new )
sql_handle_col ( $col, $table, $old, $new )
write_sql_row_fields ( $table, $rows )

Method Details

__invoke() public method

Searches through all rows in a selection of tables and replaces appearances of the first string with the second string. By default, the command uses tables registered to the $wpdb object. On multisite, this will just be the tables for the current site unless --network is specified. Search/replace intelligently handles PHP serialized data, and does not change primary key values. ## OPTIONS : A string to search for within the database. : Replace instances of the first string with this new string. [...] : List of database tables to restrict the replacement to. Wildcards are supported, e.g. 'wp_*options' or 'wp_post*'. [--dry-run] : Run the entire search/replace operation and show report, but don't save changes to the database. [--network] : Search/replace through all the tables registered to $wpdb in a multisite install. [--all-tables-with-prefix] : Enable replacement on any tables that match the table prefix even if not registered on $wpdb. [--all-tables] : Enable replacement on ALL tables in the database, regardless of the prefix, and even if not registered on $wpdb. Overrides --network and --all-tables-with-prefix. [--export[=]] : Write transformed data as SQL file instead of saving replacements to the database. If is not supplied, will output to STDOUT. [--export_insert_size=] : Define number of rows in single INSERT statement when doing SQL export. You might want to change this depending on your database configuration (e.g. if you need to do fewer queries). Default: 50 [--skip-columns=] : Do not perform the replacement on specific columns. Use commas to specify multiple columns. 'guid' is skipped by default. [--include-columns=] : Perform the replacement on specific columns. Use commas to specify multiple columns. [--precise] : Force the use of PHP (instead of SQL) which is more thorough, but slower. [--recurse-objects] : Enable recursing into objects to replace strings. Defaults to true; pass --no-recurse-objects to disable. [--verbose] : Prints rows to the console as they're updated. [--regex] : Runs the search using a regular expression. Warning: search-replace will take about 15-20x longer when using --regex. ## EXAMPLES # Search and replace but skip one column $ wp search-replace 'http://example.dev' 'http://example.com' --skip-columns=guid # Run search/replace operation but dont save in database $ wp search-replace 'foo' 'bar' wp_posts wp_postmeta wp_terms --dry-run # Turn your production multisite database into a local dev database $ wp search-replace --url=example.com example.com example.dev 'wp_*options' wp_blogs # Search/replace to a SQL file without transforming the database $ wp search-replace foo bar --export=database.sql # Bash script: Search/replace production to development url (multisite compatible) #!/bin/bash if $(wp --url=http://example.com core is-installed --network); then wp search-replace --url=http://example.com 'http://example.com' 'http://example.dev' --recurse-objects --network --skip-columns=guid else wp search-replace 'http://example.com' 'http://example.dev' --recurse-objects --skip-columns=guid fi
public __invoke ( $args, $assoc_args )