회신하다개인 함수 연결()
{
노력하다{
//데이터 소스 DSN 구성
$dsn = "{$this->dbConfig['db']}:host={$this->dbConfig['host']};
port={$this->dbConfig['port']};dbname={$this->dbConfig['dbname']};
charset={$this->dbConfig['charset']}";
//PDO 객체 생성
new PDO($dsn,$this->dbConfig['user'],$this->dbConfig['pass']);
//클라이언트의 기본 문자 집합을 설정합니다.
$this->conn->query("SET NAMES {$this->dbConfig['charset']}") //여기 70번째 줄이 있습니다.
}캐치(PDOException $e){
die('데이터베이스 연결 실패'.$e->getMessage());
}
}
데이터베이스를 호출하는 방식에 문제가 있을 수 있습니다. 코드를 확인하고 설명서를 읽어보세요
코드를 게시하고 살펴보세요