如何从wp-config.php中读取值?

时间:2011-10-27 19:25:23

标签: wordpress

我需要从wp-config文件中获取用户名,密码等,以连接到自定义PDO数据库。

目前我有另一个文件,我有这个信息,但我只想使用wp-config

那么如何阅读wp-config的不同属性?

7 个答案:

答案 0 :(得分:13)

我甚至在wp-config.php中定义了我自己的常量,并设法在没有任何包含的主题中检索它们。

WP-config.php中

define('DEFAULT_ACCESS', 'employee');

的functions.php

echo "DEFAULT_ACCESS :".DEFAULT_ACCESS;

输出 DEFAULT_ACCESS:员工

答案 1 :(得分:11)

这是一些相同的代码。

// ...Call the database connection settings
require( path to /wp-config.php );

// ...Connect to WP database
$dbc = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if ( !$dbc ) {
    die( 'Not Connected: ' . mysql_error());
}
// Select the database
$db = mysql_select_db(DB_NAME);
if (!$db) {
    echo "There is no database: " . $db;
}

// ...Formulate the query
$query = "
    SELECT *
    FROM `wp_posts`
    WHERE `post_status` = 'publish'
    AND `post_password` = ''
    AND `post_type` = 'post'
    ";

// ...Perform the query
$result = mysql_query( $query );

// ...Check results of the query and terminate the script if invalid results
if ( !$result ) {
    $message = '<p>Invalid query.</p>' . "\n";
    $message .= '<p>Whole query: ' . $query ."</p> \n";
    die ( $message );
}

// Init a variable for the number of rows of results
$num_rows = mysql_num_rows( $result );

// Print the number of posts
echo "$num_rows Posts";

// Free the resources associated with the result set
if ( $result ) {
    mysql_free_result( $result );
    mysql_close();
}

答案 2 :(得分:9)

我只想包含该文件,然后我就可以访问varibales中的变量了。

<?php
  require_once('wp-config.php');
  echo DB_NAME;
?>

这假设你在同一台服务器上,你可以通过文件系统访问wp-config.php。

如果您正在为插件执行此操作,则这些值已经可用。您不需要再次包含该文件。

答案 3 :(得分:4)

你可以从wp-config.php中获取所有全局常量,只需回显const:

<?php
  echo DB_HOST;
  echo DB_NAME;
  echo DB_USER;
  echo DB_PASSWORD;

答案 4 :(得分:1)

如果要连接到DB,对于当前版本的PHP,建议使用 mysqli 扩展(mysql扩展将弃用):

require_once ("../wp-config.php"); // path to wp-config depends on your file locatoin
$mysqli = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
if ($mysqli->connect_errno) {
    echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
}

答案 5 :(得分:0)

只需添加所需的wp-load.php文件即可。 你可以使用所有的wordpress功能 get_recent_posts()等等......

答案 6 :(得分:0)

Here是读取所有WP DB定义的函数:

function get_wordpress_data() {
    $content = @file_get_contents( '../wp-config.php' );

    if( ! $content ) {
        return false;
    }

    $params = [
        'db_name' => "/define.+?'DB_NAME'.+?'(.*?)'.+/",
        'db_user' => "/define.+?'DB_USER'.+?'(.*?)'.+/",
        'db_password' => "/define.+?'DB_PASSWORD'.+?'(.*?)'.+/",
        'db_host' => "/define.+?'DB_HOST'.+?'(.*?)'.+/",
        'table_prefix' => "/\\\$table_prefix.+?'(.+?)'.+/",
    ];

    $return = [];

    foreach( $params as $key => $value ) {

        $found = preg_match_all( $value, $content, $result );

        if( $found ) {
            $return[ $key ] = $result[ 1 ][ 0 ];
        } else {
            $return[ $key ] = false;
        }

    }

    return $return;
}

这将返回如下数组:

array (size=5)
  'db_name' => string '.........'
  'db_user' => string '.........'
  'db_password' => string '.........'
  'db_host' => string 'localhost'
  'table_prefix' => string 'wp_'