1
私はCodeigniter 3、PHP、MySQLを使用しています。Codeigniter Select(条件付き)更新クエリ
私は、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