基本概念:工厂方法或者类生成对象,不在代码中直接new#####
原始写法:
index.php
$db = new Database();
工厂模式:
index.php
$db = Database::create();`
Factory.php
class Factory
{
static function create(){
$db = new Database();
return $db;
}
}
基本概念:工厂方法或者类生成对象,不在代码中直接new#####
原始写法:
index.php
$db = new Database();
工厂模式:
index.php
$db = Database::create();`
Factory.php
class Factory
{
static function create(){
$db = new Database();
return $db;
}
}