本文整理汇总了PHP中core::model方法的典型用法代码示例。如果您正苦于以下问题:PHP core::model方法的具体用法?PHP core::model怎么用?PHP core::model使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core
的用法示例。
在下文中一共展示了core::model方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __get
public function __get($var)
{
if ($var == 'view') {
// 传递 全局的 $conf
$this->view = new template($this->conf);
return $this->view;
// 不建议直接在 control 直接操作 DB!!! 留给插件作者应急之用。
// 用法:$this->db->query("SHOW STATUS");
} elseif ($var == 'db') {
$conf = $this->conf;
$type = $conf['db']['type'];
$dbname = "db_{$type}";
return new $dbname($conf['db'][$type]);
} else {
// 遍历全局的 conf,包含 model
$this->{$var} = core::model($this->conf, $var);
if (!$this->{$var}) {
throw new Exception('Not found model:' . $var);
}
return $this->{$var};
}
}
示例2: requestModels
function requestModels(&$modelsNeeded)
{
$modelsNeeded = array("article", core::model("blog"), core::model("comments"));
}
示例3: library
static function library($name)
{
static $used= array();
if (isset($used[$name])) return;
$used[$name]= true;
return core::model($name);
}
示例4: __get
function __get($var)
{
if ($var == 'db') {
$this->{$var} = $this->get_db_instance();
return $this->{$var};
} elseif ($var == 'cache') {
$this->{$var} = $this->get_cache_instance();
return $this->{$var};
} else {
// 遍历全局的 conf,包含 model
if (!empty($this->old_conf)) {
$conf =& $this->old_conf;
} else {
$conf =& $this->conf;
}
$this->{$var} = core::model($conf, $var);
if (!$this->{$var}) {
throw new Exception('Not found model:' . $var);
}
return $this->{$var};
}
}