class Table {
public $tableName = NULL;
public function loadFromMysqlRowResult($row){
foreach($row as $property=>$value){
$this->__set($property,$value);
}
return $this;
}
public function __set($property,$value){
return $this->$property = $value;
}
}
class News extends Table {
private $db = NULL;
public function __construct($db){
$this->db = $db;
$this->tableName = strtolower(__CLASS__);
}
public function findOne($id){
$query = $this->db->query("select * from news where id=".$id)->fetch(PDO::FETCH_ASSOC);
return self::loadFromMysqlRowResult($query);
}
}
$db = new PDO('mysql:host=localhost;dbname=test','root','c313c313');
$newsModel = new News($db);
$news = $newsModel->findOne(1);
echo $news->title;
还没更新完。。。
如果你为一张表写映射
1、刚开始你可以这么写
2、数据表更变了,加了一个created_at,于是怎么办?改文件还是?
于是这个是不是更方便?
3、从数据库中映射出来行(大概示意下)
你可以在方法里任意发挥想象,只是尽量遵循参数和返回值的规范。有一个例子,就是将类的数组属性转换成一组独立属性