<?php
namespace Imooc;
class Factory
{
public static function createFactory($class)
{
$db = new $class;
return $db;
}
}
namespace Imooc;
class Factory
{
public static function createFactory($class)
{
$db = new $class;
return $db;
}
}
2016-05-14
private static $db;
private function __construct()
{
}
static function getInstance()
{
if(!(self::$db instanceof self)){
self::$db = new self();
}
return self::$db;
}
前面那里 错了一部分 开始没运行,没发现.
private function __construct()
{
}
static function getInstance()
{
if(!(self::$db instanceof self)){
self::$db = new self();
}
return self::$db;
}
前面那里 错了一部分 开始没运行,没发现.
2016-05-11
class DataBase{
private static $db;
private function __construct()
{ }
static function getInstance()
{
if(!self::$db instance of self){
self::$db = new self();
}
return self::$db;
}
protected function __clone(){
}
}
private static $db;
private function __construct()
{ }
static function getInstance()
{
if(!self::$db instance of self){
self::$db = new self();
}
return self::$db;
}
protected function __clone(){
}
}
2016-05-11
已采纳回答 / dongyule
ArrayAccess(数组式访问)接口ArrayAccess { /* 方法 */ abstract public boolean offsetExists ( mixed $offset ) //return isset($arr['$offset']) abstract public mixed offsetGet ( mixed $offset ) //return isset($arr['$offset']) ? $arr['$offset'] : null; abst...
2016-05-11
已采纳回答 / Terry_Lucas
不用继承流程如下User类继承了Model类。该类获取当前model类的class 读取配置文件配置好的观察者进行一次性加载到观察者数组中
2016-05-11
14.4节数据库配置加载中那个
=application::getinstance()->config[]……
这个类和静态方法是怎样的,看不懂,怎么加载,
=application::getinstance()->config[]……
这个类和静态方法是怎样的,看不懂,怎么加载,
2016-05-04
最新回答 / 悲剧丶不上演
首先命名空间在应该用的是\,而不是/。经过我本地测试spl_autoload_register('\\IMooc\Loader::autoload');也可运行。我理解的是\\是第一个是转义
2016-05-02