当前位置: 首页>>代码示例>>PHP>>正文


PHP Kernel::load方法代码示例

本文整理汇总了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());
 }
开发者ID:Atlis,项目名称:docker-magento2,代码行数:16,代码来源:KernelTest.php

示例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();
 }
开发者ID:rommelsantor,项目名称:RawMVC,代码行数:36,代码来源:kernel.php

示例3:

<?php

include_once '../config/config.php';
include_once '../kernel/Kernel.php';
Kernel::load();
开发者ID:crabkakcrab,项目名称:URLshortener,代码行数:5,代码来源:index.php


注:本文中的Kernel::load方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。