how can get database name in wordpress? -


i want wordpress database name. have try database name $wpdb failed. when print $wpdb give object array don't know how database name object array.

you can anywhere db name using

 <?php  echo db_name; ?>   <?php echo db_user; ?> 

or

to db name using $wpdb:

global $wpdb; echo $wpdb->dbname; 

it return database name string.

enter image description here

enter image description here


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -