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


PHP bootstrap::autoload1方法代码示例

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


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

示例1: run

 public static function run()
 {
     define('DINGO_VERSION', '0.7.1');
     // Start buffer
     ob_start();
     // Autoloading files
     require_once SYSTEM . '/core/core.php';
     require_once SYSTEM . '/core/error.php';
     spl_autoload_register(array('bootstrap', 'autoload'));
     bootstrap::addPackage(SYSTEM . '/core');
     bootstrap::addPackage(SYSTEM . '/library');
     bootstrap::addPackage(APPLICATION . '/');
     load::library('db');
     require_once APPLICATION . '/' . CONFIG . '/' . CONFIGURATION . '/config.php';
     set_error_handler('dingo_error');
     set_exception_handler('dingo_exception');
     // Load route configuration
     require_once APPLICATION . '/' . CONFIG . '/' . CONFIGURATION . '/route.php';
     set_error_handler('dingo_error');
     set_exception_handler('dingo_exception');
     config::set('system', SYSTEM);
     config::set('application', APPLICATION);
     config::set('config', CONFIG);
     // Load route configuration
     require_once APPLICATION . '/' . CONFIG . '/' . CONFIGURATION . '/route.php';
     // Get route
     $uri = route::get(bootstrap::get_request_url());
     // Set current page
     define('CURRENT_PAGE', $uri['string']);
     // Validate
     if (!route::valid($uri)) {
         load::error('general', 'Invalid URL', 'The requested URL contains invalid characters.');
     }
     // Load Controller
     //----------------------------------------------------------------------------------------------
     // Initialize controller
     $tmp = "{$uri['controller_class']}_controller";
     if (!class_exists($tmp)) {
         load::error('404');
     }
     $controller = new $tmp();
     unset($tmp);
     // Check if using valid REST API
     if (api::get()) {
         if (!empty($controller->controller_api) and is_array($controller->controller_api) and !empty($controller->controller_api[$uri['function']]) and is_array($controller->controller_api[$uri['function']])) {
             foreach ($controller->controller_api[$uri['function']] as $e) {
                 api::permit($e);
             }
             if (!api::allowed(api::get())) {
                 load::error('404');
             }
         } else {
             load::error('404');
         }
     }
     // Autoload Components
     bootstrap::autoload1($controller);
     // Check to see if function exists
     if (!is_callable(array($controller, $uri['function']))) {
         // Try replacing underscores with dashes
         $minus_function_name = str_replace('-', '_', $uri['function']);
         if (!is_callable(array($controller, $minus_function_name))) {
             load::error('404');
         } else {
             $uri['function'] = $minus_function_name;
         }
     }
     // Run Function
     call_user_func_array(array($controller, $uri['function']), $uri['arguments']);
     // Display echoed content
     ob_end_flush();
 }
开发者ID:reang,项目名称:Dingo-Framework,代码行数:72,代码来源:bootstrap.php


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