class Model{
private $_db;
function __construct($db){
$this->_db = $db;
}
function __destruct(){
$this->_db->close();
}
}
class Model{
private $_db;
function __construct($db){
$this->_db = $db;
}
function __destruct(){
$this->_db->close();
}
}
Permalink to : http://blog.dayuer.com/archives/2008/05/11/318.html