-2

bindColumnステートメントやその他のコードの長いリストをseparateファイルに保持し、メイン コードを汚染するのではなく、必要な場所で使用しようとしています。私は、stock.php というファイルを作成し、すべてのbindColumnステートメントをその中に入れ、各ページに含めました。どういうわけか、私はこれを正しく理解していないようで、多くのエラーが発生し続けています。

どうすればこのようなことができますか?

select x, y, z, a, b, c from table;
$stmt->execute($array);
//Instead of writing all those bindColumn statements here after the select, 
//I'd like to keep them in a seperate file and include them here. How?


//In a seperate file
function bindCols(){
    $x = '$stmt->bindColumn('x',$x);';
    $x = '$stmt->bindColumn('y',$y);';
    $x = '$stmt->bindColumn('z',$z);';
    $x = '$stmt->bindColumn('a',$a);';
    $x = '$stmt->bindColumn('b',$b);';
    $x = '$stmt->bindColumn('c',$c);';
    $x = '$stmt->bindColumn('d',$d);';

    return $x;
}
4

1 に答える 1