通读the source code 对于wpdb
class, 我看不出有什么理由像这样不起作用:
$otherdb = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
$otherdb->prefix = \'wp2_\';
然后(如果我理解正确的话)你可以使用所有现有的
$wpdb
方法和变量。例如:
$x = $otherdb->get_results( $sql_query );
(如果我错了,或者由于我没有考虑到的原因,这是一种不好的做法,请随时纠正我。)