すべての「」を置き換えるにはどうすればよいですか?変数?何かのようなもの:
$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
何か案は?