Yaf_Application
PHP Manual

Yaf_Application::execute

(PECL yaf >=1.0.0)

Yaf_Application::executeExecute a callback

说明

public void Yaf_Application::execute ( callable $entry , string $... )

This method is typically used to run Yaf_Application in a crontab work. Make the crontab work can also use the autoloader and Bootstrap mechanism.

Warning

本函数还未编写文档,仅有参数列表。

参数

entry

...

返回值

范例

Example #1 Yaf_Application::execute()example

<?php
function main($argc$argv) {
}

$config = array(
    
"application" => array(
        
"directory" => realpath(dirname(__FILE__)) . "/application",
    ),
);

/** Yaf_Application */
$application = new Yaf_Application($config);
$application->execute("main"$argc,  $argv);
?>

以上例程的输出类似于:


Yaf_Application
PHP Manual