工厂模式选型真的香啊 php后端用起来太舒服了
public static function createService($type) {
switch($type) {
case 'user': return new UserService();
}
}
登录/注册