(PECL yaf >=1.0.0)
Yaf_Application::execute — Execute a callback
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.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
entry
...
Beispiel #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);
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: