利用wordpress的資料庫操作函式

地球沒有花發表於2018-08-30

記錄一下,轉自:http://kevin-wu.net/category/iosdevexp/tips-wordpress/

使用wordpress的時候,如果想直接使用WP裡封裝的資料庫操作的類(wp-db.php),將wp-blog-header.php包含到程式碼中就可以使用了。

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

插入資料時,其中一種方法是使用wp-db類中的insert()函式。

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

第一個引數是資料庫表中的名字,第二個引數是要插入的資料,是一個陣列。陣列中的key的名字就是表中的列名。其實insert()函式還有第三個引數format,感興趣的朋友可以在wp-db.php的方法定義裡看看。

更新資料時,可以用update()函式,例如:

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

要從資料庫中取資料,也有很多種方法,其中一種如下:

$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++;
}

 

相關文章