本文整理汇总了PHP中Reader::load方法的典型用法代码示例。如果您正苦于以下问题:PHP Reader::load方法的具体用法?PHP Reader::load怎么用?PHP Reader::load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Reader
的用法示例。
在下文中一共展示了Reader::load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Constructor
*/
protected function __construct($reader, $module)
{
// store reader
$this->_reader = $reader;
// store module
$this->_module = $module;
// load module
$this->_reader->load(strtolower($this->_module));
}
开发者ID:yubinchen18,项目名称:A-basic-website-project-for-a-company-using-the-MVC-pattern-in-Kohana-framework,代码行数:12,代码来源:Settings.php
示例2: load
/**
* Load a text packs
*/
public function load()
{
// get packs from arguments
$packs = func_get_args();
for ($i = 0; $i < count($packs); $i++) {
$pack = $packs[$i];
if (is_array($pack)) {
// by mistake an array might be given. That's ok
for ($j = 0; $j < count($pack); $j++) {
$this->_reader->load($pack[$j]);
}
} else {
$this->_reader->load($pack);
}
}
return $this;
}
开发者ID:yubinchen18,项目名称:A-basic-website-project-for-a-company-using-the-MVC-pattern-in-Kohana-framework,代码行数:20,代码来源:Text.php