本文整理汇总了PHP中Kernel::load方法的典型用法代码示例。如果您正苦于以下问题:PHP Kernel::load方法的具体用法?PHP Kernel::load怎么用?PHP Kernel::load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Kernel
的用法示例。
在下文中一共展示了Kernel::load方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testLoad
/**
* @dataProvider loadProvider
* @param mixed $expected
* @param string $id
* @param mixed $cache
* @param bool $isGet
* @param bool $isHead
*/
public function testLoad($expected, $id, $cache, $isGet, $isHead)
{
$this->requestMock->expects($this->once())->method('isGet')->will($this->returnValue($isGet));
$this->requestMock->expects($this->any())->method('isHead')->will($this->returnValue($isHead));
$this->cacheMock->expects($this->any())->method('load')->with($this->equalTo($id))->will($this->returnValue(serialize($cache)));
$this->identifierMock->expects($this->any())->method('getValue')->will($this->returnValue($id));
$this->assertEquals($expected, $this->kernel->load());
}
示例2: __construct
/**
*
*/
public function __construct()
{
self::$s_obj = $this;
spl_autoload_register(function ($i_name) {
list($ns, $name) = explode('\\', $i_name, 2);
if ($ns != __NAMESPACE__) {
return;
}
$name = strtolower($name);
if (substr($name, -5) == 'trait') {
if (Kernel::load('trait/' . substr($name, 0, -5) . '.php')) {
return;
}
} else {
if (substr($name, -4) == 'view') {
if (Kernel::load('view/' . substr($name, 0, -4) . '.php')) {
return;
}
}
}
Kernel::load('model/' . $name . '.php');
});
self::load('inc/global.php');
self::load('inc/db.php');
if (PHP_SAPI == 'cli' && @$_SERVER['argv'][1] == 'install') {
self::install_application();
die("done.\n");
}
self::initialize();
self::enqueue_std_styles();
self::enqueue_std_scripts();
$this->bootstrap();
}
示例3:
<?php
include_once '../config/config.php';
include_once '../kernel/Kernel.php';
Kernel::load();