MVC-model模型层
在model中我们主要是原始的链接数据库和链接数据库错误提示
代码实现
<?php
namespace roce\lib;
class model extends \PDO
{
public function __construct()
{
$dsn = "mysql:host=localhost;dbname=test";
$username = "root";
$passwd = "root";
try
{
parent::__construct($dsn,$username,$passwd);
}
catch(\PDOException $e)
{
echo $e->getMessage();
}
}
}
?>
|