模型類中數(shù)據(jù)庫異常顯示不出來,請求指導(dǎo)一下
這是模型類中的數(shù)據(jù)庫鏈接代碼: 其中數(shù)據(jù)庫名字 dailog4是一個不存在的數(shù)據(jù)庫,但是沒有任何的錯誤信息
namespace croe\lib;
class model extends \PDO{
? ?public function __construct(){
? ? ? ?$dsn = 'mysql:host=localhost;dbname = dailog4';
? ? ? ?$username = 'root';
? ? ? ?$password = 'root';
? ? ? ?try{
? ? ? ? ? ?parent::__construct($dsn,$username,$password);
? ? ? ?}catch(\PDOException $e){
? ? ? ? ? ?p($e->getMessage());
? ? ? ?}
? ?}
}
2017-01-14
試過 echo 異常信息 沒有反應(yīng)
2017-01-14
打印一下錯誤啊