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


PHP Loader::init方法代码示例

本文整理汇总了PHP中Loader::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Loader::init方法的具体用法?PHP Loader::init怎么用?PHP Loader::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Loader的用法示例。


在下文中一共展示了Loader::init方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: run

 public static function run()
 {
     require_once 'library/Smarty/Smarty.class.php';
     require_once 'core/Loader.class.php';
     date_default_timezone_set("Asia/Shanghai");
     Loader::init();
     Factory::run();
 }
开发者ID:cywymch,项目名称:testMvc,代码行数:8,代码来源:App.php

示例2: basic

 /** Basic initialization - preload settings and locales
  * @return void
  */
 public static function basic()
 {
     Loader::init();
     Status::init();
     Settings::init();
     Locales::init();
     Router::update_rewrite();
 }
开发者ID:just-paja,项目名称:fudjan,代码行数:11,代码来源:init.php

示例3: init

 /**
  * App init
  * @access public
  * @static
  */
 public static function init()
 {
     self::importCore();
     ProjectConfiguration::init();
     date_default_timezone_set(ProjectConfiguration::getConfig('timezone'));
     self::initLog();
     set_error_handler('App::errorHandler', ProjectConfiguration::getConfig('error_level'));
     Loader::init();
     self::$mControllerAndParams = Loader::getControllerFromUrlObject();
     self::$mTemplateObj = PHPTemplate::getInstance();
 }
开发者ID:BGCX067,项目名称:fabos-svn-to-git,代码行数:16,代码来源:App.class.php

示例4: testClassNotExist

 /**
  * 类不存在
  *
  * @expectedException        Exception
  * @expectedExceptionMessage the class "ClassNotExist" is not found
  */
 public function testClassNotExist()
 {
     Loader::init(array('Library/'), array('.class.php'));
     $cl = new ClassNotExist();
 }
开发者ID:BPing,项目名称:PHPCbping,代码行数:11,代码来源:AutoloadTest.php

示例5: fwrite

            fwrite($file, file_get_contents($frameworks[$framework][0]));
            fclose($file);
            echo "\n" . $frameworks[$framework][1] . " has been added!\n\n";
            // List the JS frameworks
        } elseif ($framework == 'list') {
            echo "\n";
            $output = '';
            foreach ($frameworks as $name => $data) {
                $output .= $name . '|';
            }
            $output = rtrim($output, '|');
            return '[' . $output . ']';
            // 	Framework was not found
        } else {
            echo "\nInvalid javascript framework.\nPlease use one from below.\n./script/load javascript " . self::javascript('list') . "\n\n";
        }
    }
    private static function url($location)
    {
        switch ($location) {
            case 'javascripts':
                return BASE_PATH . '/../public/javascripts';
                break;
            default:
                return false;
                break;
        }
    }
}
Loader::init();
开发者ID:BaylorRae,项目名称:Borealis-MVC-bk,代码行数:30,代码来源:load.php

示例6: Loader

<?php

include 'config.php';
include 'loader.php';
include 'api.php';
include 'database.php';
include 'message.php';
include 'json.php';
$loader = new Loader();
$loader->init();
开发者ID:EyeOfThReindeer,项目名称:basic-php-api,代码行数:10,代码来源:index.php


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