静态方法实例化 Application
等同于方法 Asf_Application::__construct
public Asf_Application Asf_Application::init(mixed $config [, string $section = ''])
支持 PHP数组变量、绝对路径的INI文件、绝对路径PHP文件
指定读取配置文件的节点
成功返回 Application object, 失败返回 FALSE
<?php class IndexService { public function indexAction() { } } $configs = array( 'asf' => array( 'root_path' => MODULE_PATH, ) ); $handle=Asf_Application::init($configs); $handle->run();