Asf_Application::init

静态方法实例化 Application

等同于方法 Asf_Application::__construct


Description

public Asf_Application Asf_Application::init(mixed $config [, string $section = ''])

Parameters

config

支持 PHP数组变量、绝对路径的INI文件、绝对路径PHP文件

section

指定读取配置文件的节点

Return Values

成功返回 Application object, 失败返回 FALSE

Examples

Example #1

<?php
class IndexService
{
    public function indexAction()
    {
    }
}

$configs = array(
    'asf' => array(
        'root_path'  => MODULE_PATH,
    )
);

$handle=Asf_Application::init($configs);
$handle->run();