1
我使用Codeigniter 3,PHP和MySQL。Codeigniter選擇和(條件)更新查詢
我想從MySQL數據庫中選擇一條記錄,並根據結果運行更新查詢。
If result = 0, update.
If result = 1, do nothing.
我的代碼到目前爲止是;
public function addData($itemId) {
$gDescription = 'test';
$gPreviewLink = 'test';
$gThumbnail = 'test';
$gPageCount = 'test';
$this->db->select('g_data');
$this->db->from('item');
$this->db->where('item_id', $itemId);
$query = $this->db->get();
$result = $query->result();
// var_dump($result) returns array(1) { [0]=> object(stdClass)#22 (1) { ["g_data"]=> string(1) "0" } }
$data = array(
'item_description' => $gDescription,
'item_preview_link' => $gPreviewLink,
'item_thumbnail' => $gThumbnail,
'item_pageCount' => $gPageCount,
'g_data' => '1',
'g_data_timestamp' => 'NOW()'
);
// if result = 0 update
if($result == '0') {
$this->db->where('item_id',$itemId);
$this->db->update('item', $data);
}
}
是否有任何原因數據不會在我的數據庫中更新?我沒有收到任何錯誤消息。
任何幫助,將不勝感激。
實際上你還沒有在這裏問過問題...... –
是$結果數字還是字符?頂部的例子顯示數字,但你==爲一個字符'0' – xQbert