WordPress 数据库操作WPDB对象($wpdb)用法详解

原文地址:http://codex.wordpress.org/zh-cn:Class_Reference/wpdb

使用wordpress的时候,如果想直接使用WP里封装的数据库操作的类(wp-db.php),将wp-blog-header.php包含到代码中就可以使用了。

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

define(‘PATH’, dirname(dirname(__FILE__)).‘/’);
require_once(PATH . ‘../wp-blog-header.php’);
global $wpdb;

[/pcsh]

插入数据时,其中一种方法是使用wp-db类中的insert()函数。

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

$table = "test_table";
$data_array = array(
‘column_1′ => ‘data1′,
‘column_2′ => ‘data2′
);
$wpdb->insert($table,$data_array);

[/pcsh]

第一个参数是数据库表中的名字,第二个参数是要插入的数据,是一个数组。数组中的key的名字就是表中的列名。其实insert()函数还有第三个参数format,感兴趣的朋友可以在wp-db.php的方法定义里看看更新数据时,可以用update()函数,例如:

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

$table = "test_table";
$data_array = array(
 ‘column_1′ => ‘new_data1′
);
$where_clause = array(
‘column_2′ => ‘data2′
);
$wpdb->update($table,$data_array,$where_clause);

[/pcsh]

要从数据库中取数据,也有很多种方法,其中一种如下:

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

$querystr = "SELECT column_1 FROM test_table";
$results = $wpdb->get_results($querystr);
$i=0;
while ($i< count($results)){
echo $results[$i]->column_1."<br />";
$i++;
}

[/pcsh]

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

<?php $wpdb->query("DELETE FROM $wpdb->post WHERE post_id = ’13′ “); ?> 

[/pcsh]

选出一个变量

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

<?php $wpdb->get_var('query',column_offset,row_offset); ?> 

[/pcsh]

其中query为要查询的mysql语句,如果为空的话,则表示从cache中选出。column_Offset和row_offet表示制定query返回值的第几列和第几行,缺省值为零。典型用法为:

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

<?php $user_count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM $wpdb->users;"));?>

[/pcsh]

这个sql只选出一个值,缺省的0行0列,即表示选出用户数目。目前还不清楚,这里为什么总是要加prepare在前面。

选出一行

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

<?php $wpdb->get_row('query', output_type, row_offset); ?> 

[/pcsh]

 

 

 

 

 

 

 

 

 

 

 

 

 

此处评论已关闭