Asf_Application::getRootPath


Description

public string Asf_Application::getRootPath(void)

Parameters

此函数没有参数

Return Values

获取一个 Asf_Application 对象的配置信息中的 root_path

Examples

Example #1

$configs = array(
    'asf' => array(
        'root_path' => realpath(dirname(__FILE__)),
    )
);

class IndexService
{
    public function indexAction()
    {
    }
}

$handle = new Asf_Application($configs);
$handle->run();

var_dump($handle->getRootPath());