[Codeigniter-users] 1.7.0の互換性

Back to archive index

mocapapa mocap****@pugpu*****
2008年 12月 12日 (金) 19:34:55 JST


On Fri, 12 Dec 2008 19:00:26 +0900
kunitsuji <tsuji****@m-s*****> wrote:

>  kunitsujiです。
> 
> ども
> 
> > $this->db->where("code='$code'");
> $this->db->where("code='.$code.'");
> じゃないんですか?

これは、

$this->db->where("code='".$code."'");

として理解しました。

さて、エラーとなる状況が掴めてきました。

×:$this->db->where("code='$code'");
○:$this->db->where("code ='$code'");
×:$this->db->where("code= '$code'");
○:$this->db->where("code = '$code'");

×:$this->db->where("code='".$code."'");
○:$this->db->where("code ='".$code."'");
×:$this->db->where("code= '".$code."'");
○:$this->db->where("code = '".$code."'");

○:$this->db->where( array('code', $code) );

となるようです。ホワイトスペースで動作が影響されるのは盲点であり、なかな
か気づきませんでした。

-- 
桜井 厚 <sakur****@pugpu*****>



Codeigniter-users メーリングリストの案内
Back to archive index