Yaf_Application::execute

(PECL yaf >=1.0.0)

Yaf_Application::executeExecute a callback

Beskrivelse

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.

Advarsel

This function is currently not documented; only its argument list is available.

Parametre

entry

...

Returnerings Værdier

Eksempler

Eksempel #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);
?>

The above example will output something similar to:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top