Asf_Application::run

php-fpm 模式下的启动入口, 它是单例模式运行的

支持多模块下应用

通常在web应用中使用


Description

public bool Asf_Application::run(void)

Parameters

此函数没有参数

Return Values

true 代表成功, false 代表失败

Examples

Example #1 简要展示方法调用

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

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

Example #2 简要展示方法调用

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

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

Example #3 简要展示方法调用

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

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