當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。