次のデータベースクエリは問題なく動作しますが、以前の別の質問で、必要のないときにグローバルを使用していることに気付きました。その理由は、保護された変数を使用しようとしましたが、OOP の初心者であり、それを機能させることができなかったためです。
おそらく、誰かがそれをどのように行うべきかを教えてくれるでしょうか?
<?
class DB {
public function __construct() {
global $dbh;
try {
$dbh = new PDO('mysql:host=localhost;dbname=main_db', 'my_user', 'my_pass');
$dbh ->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
}
catch(PDOException $e) {
echo $e->getMessage();
}
}
public function getFAQCats2Array() {
global $dbh;
try {
$q = '
SELECT
`id` AS ci,
`name` AS n
FROM
`faqcat`;
';
$s = $dbh->query($q);
// initialise an array for the results
$A = array();
while ($r = $s->fetch(PDO::FETCH_ASSOC)) {
$A[] = $r;
}
$s = null;
return $A;
}
catch(PDOException $e) {
echo "Something went wrong fetching the list of FAQ categories from the database.\n";
file_put_contents(
$_SERVER['DOCUMENT_ROOT']."/PDOErrors.txt",
"\n\n\n\n".$e->__toString(), FILE_APPEND);
}
}
public function getFAQ($i, $f) {
global $dbh;
try {
$q = '
SELECT
'.$f.'
FROM
faq
WHERE
id = ?
';
$s = $dbh->prepare($q);
$s->execute(array($i));
//$s->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
$r = $s->fetch();
return $r[$f];
}
catch(PDOException $e) {
echo "Something went wrong fetching the FAQ answer from the database.\n";
file_put_contents(
$_SERVER['DOCUMENT_ROOT']."/PDOErrors.txt",
"\n\n\n\n".$e->__toString(), FILE_APPEND);
}
}
}
(クラスには で同じ接続文字列を使用する他の関数がありましたが$dbh
、簡単にするためにそれらを削除しました)