どのように '?'変数は?以下のような何か:疑問符プレースホルダー
$name = 'test' ;
$lname = 'lastTest';
$id = 1 ;
->where ('customers.name = ? and customers.lastname = ? and customers.id = ?' , $name , $lname , $id) ;
出力:
customers.name = 'test' and customers.lastname = 'lastTest' and customers.id = 1
任意のアイデア?
これにはどのライブラリが使用されていますか? –
なし、それは私のフレームワークです。 –
なぜそれが必要ですか?データベース用の独自のプレースホルダシステムを実装していますか?あなたはもっと具体的になりませんか? –