揮発性のメモ2

http://d.hatena.ne.jp/iww/

2008-09-02から1日間の記事一覧

PDOStatement->execute()

$sth->execute($array) のような使い方をするとき、$arrayに余計なものが入ってると実行されない。ケチだ。 $o['a']=1; $o['b']=2; $o['c']=3; $sth = $dbh->prepare( 'INSERT INTO hoge SET a=:a,b=:b' ); $result = $sth->execute($o); Warning: PDOStatem…