WP_Debug_Data::get_mysql_var( string $mysql_var ): string|null

In this article

Returns the value of a MySQL system variable.

Parameters

$mysql_varstringrequired
Name of the MySQL system variable.

Return

string|null The variable value on success. Null if the variable does not exist.

Source

public static function get_mysql_var( $mysql_var ) {
	global $wpdb;

	$result = $wpdb->get_row(
		$wpdb->prepare( 'SHOW VARIABLES LIKE %s', $mysql_var ),
		ARRAY_A
	);

	if ( ! empty( $result ) && array_key_exists( 'Value', $result ) ) {
		return $result['Value'];
	}

	return null;
}

Changelog

VersionDescription
5.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.