php try catch: 예외 잡기, 예외 던지기:
/** * 构造函数:自动加载连接数据库 * @param $database $key * @return */ private function __construct($database = array(), $key){ try{ $this->server = $database['db_host']; $this->username = $database['db_user']; $this->password = $database['db_pwd']; $this->database_name = $database['db_name']; $this->database_type = $database['db_type']; $this->database_port = $database['db_port']; if($this->database_type == 'mysql'){ $this->pdo = new PDO($this->database_type . ':host=' . $this->server . ';port=' . $this->database_port . ';dbname=' . $this->database_name, $this->username, $this->password, array(PDO::ATTR_TIMEOUT => self::TIME_OUT)); }else{ $this->pdo = new PDO ("dblib:host=$this->server:$this->database_port; dbname=$this->database_name","$this->username","$this->password"); } $this->pdo->exec('SET NAMES \'' . $this->charset . '\''); self::$pdo_ref[$key] = &$this->pdo; }catch(PDOException $e){ echo $e->getMessage(); } }
위에서는 php try catch: 예외 잡기, 예외 던지기, 측면 포함을 소개합니다. 더 많은 관련 내용을 보려면 참조하세요. PHP 중국어 웹사이트(www.php.cn)를 주목하세요!